-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "rosen-selection",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"coverage": "npm run coverage --workspaces",
"lint": "npm run lint --workspaces",
"lint:check": "npm run lint:check --workspaces",
"prepare": "husky install",
"release": "npm run release --workspaces",
"test": "npm run test --workspaces",
"type-check": "npm run type-check --workspaces",
"version": "npx changeset version && npx changeset add --empty && npm i"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.39.1",
"@rosen-bridge/changeset-formatter": "^2.0.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.18.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/eslint-plugin": "^1.3.9",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-check-file": "^3.2.0",
"globals": "^16.4.0",
"husky": "^8.0.1",
"knip": "^5.68.0",
"lint-staged": "^13.0.3",
"prettier": "^3.2.4",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"@vitest/coverage-istanbul": "^3.1.4",
"tsx": "^4.20.5",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=22.18.0",
"npm": "11.6.2"
}
}