-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 887 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 887 Bytes
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
{
"name": "argus-monorepo",
"private": true,
"version": "0.1.0",
"description": "Argus — Privacy-first distributed diagnostics platform",
"license": "Apache-2.0",
"engines": {
"node": ">=22.6.0",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test:coverage",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"typecheck": "pnpm -r run typecheck",
"validate": "pnpm -r run validate",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/source-map": "^0.5.7",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
}
}