-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.28 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
52
53
54
55
56
57
58
59
60
{
"name": "sentinel-monorepo",
"private": true,
"version": "0.0.0",
"description": "Sentinel — static analysis platform for detecting integration problems before deployment",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @sentinel-scan/core && npm run build -w @sentinel-scan/cli && npm run build -w @sentinel-scan/ai && npm run build -w @sentinel-scan/cloud-sdk",
"build:core": "npm run build -w @sentinel-scan/core",
"build:cli": "npm run build -w @sentinel-scan/cli",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"typecheck": "npm run build -w @sentinel-scan/core && npm run typecheck -w @sentinel-scan/core && npm run typecheck -w @sentinel-scan/cli && npm run typecheck -w @sentinel-scan/ai && npm run typecheck -w @sentinel-scan/cloud-sdk",
"clean": "node --eval \"const {rmSync}=require('fs'); ['packages/core/dist','packages/cli/dist','packages/ai/dist','packages/cloud-sdk/dist'].forEach(p=>rmSync(p,{recursive:true,force:true}));\"",
"prepare": "husky",
"commitlint": "commitlint --edit",
"parse-ast": "npm run build:core -s && npx tsx --tsconfig scripts/tsconfig.json scripts/parse-ast.ts",
"parse-ast:tsx": "npm run build:core -s && npx tsx --tsconfig scripts/tsconfig.json scripts/parse-ast.ts --tsx"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.0.0",
"@sentinel-scan/core": "*",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.3.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blaycoder/Sentinel.git"
}
}