-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.48 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
50
51
{
"name": "rosen-bridge",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/observation-extractors/*",
"packages/scanners/*"
]
},
"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/coverage-istanbul": "^3.1.4",
"@vitest/eslint-plugin": "^1.3.9",
"cross-env": "^10.1.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.2.0",
"globals": "^16.4.0",
"husky": "^8.0.1",
"knip": "^5.65.0",
"lint-staged": "^13.0.3",
"prettier": "^3.2.4",
"rimraf": "^6.0.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=22.18.0",
"npm": "11.6.2"
}
}