-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "ultravibe-scheduler",
"version": "2.0.0",
"description": "UltraVibe 双闭环无人值守调度器 - TypeScript 机械执行引擎",
"type": "module",
"main": "dist/index.js",
"bin": {
"uv": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"generate:skills": "tsx src/index.ts generate-skill",
"postinstall": "npm run generate:skills",
"check": "npm run typecheck && npm run lint && npm run test",
"harness:gen": "tsx scripts/generate-harness.ts",
"harness:check": "tsx scripts/generate-harness.ts --check"
},
"dependencies": {
"commander": "^12.0.0",
"picocolors": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/node": "^20.14.0",
"eslint": "^9.39.5",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.67.0",
"vitest": "^2.0.0"
}
}