-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.82 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "waveforge",
"version": "0.1.1",
"description": "WaveForge MCP 任务管理系统 - 双层级任务管理解决方案,专为AI代理协同工作设计",
"main": "dist/cjs/server.cjs",
"module": "dist/esm/server.js",
"types": "dist/esm/server.d.ts",
"type": "module",
"bin": {
"waveforge": "./dist/server.js"
},
"exports": {
".": {
"types": "./dist/esm/server.d.ts",
"import": "./dist/esm/server.js",
"require": "./dist/cjs/server.cjs"
},
"./core/*": {
"types": "./dist/esm/core/*.d.ts",
"import": "./dist/esm/core/*.js",
"require": "./dist/cjs/core/*.cjs"
},
"./tools/*": {
"types": "./dist/esm/tools/*.d.ts",
"import": "./dist/esm/tools/*.js",
"require": "./dist/cjs/tools/*.cjs"
},
"./types/*": {
"types": "./dist/esm/types/*.d.ts",
"import": "./dist/esm/types/*.js",
"require": "./dist/cjs/types/*.cjs"
}
},
"scripts": {
"dev": "tsx src/server.ts",
"dev:watch": "tsx watch src/server.ts",
"dev:debug": "tsx --inspect src/server.ts",
"build": "tsup",
"build:esm": "tsup --config tsup.config.ts --format esm",
"build:cjs": "tsup --config tsup.config.ts --format cjs",
"build:watch": "tsup --watch",
"build:clean": "pnpm run clean && pnpm run build",
"start": "node dist/server.js",
"start:esm": "node dist/esm/server.js",
"start:cjs": "node dist/cjs/server.cjs",
"test": "vitest --run --no-file-parallelism",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --no-file-parallelism",
"test:ui": "vitest --ui",
"test:unit": "vitest --run src/**/*.test.ts --no-file-parallelism",
"test:integration": "vitest --run src/**/*.integration.test.ts --no-file-parallelism",
"test:stable": "vitest --run --no-file-parallelism --exclude=src/core/concurrency-manager.test.ts",
"test:flaky": "vitest --run src/core/concurrency-manager.test.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"lint:watch": "nodemon --exec \"pnpm run lint\" --watch src --ext ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:watch": "nodemon --exec \"pnpm run format\" --watch src --ext ts,js,json,md",
"clean": "rm -rf dist coverage .nyc_output",
"clean:all": "pnpm run clean && rm -rf node_modules",
"prepare": "husky",
"prepack": "pnpm run build",
"prepublishOnly": "pnpm run ci && pnpm run build",
"validate:schemas": "node scripts/validate-schemas.js",
"ci": "pnpm run type-check && pnpm run lint && pnpm run test:stable && pnpm run validate:schemas",
"ci:full": "pnpm run clean && pnpm run ci && pnpm run build && pnpm run test:coverage",
"release": "pnpm run ci:full",
"health": "node -e \"console.log('Node.js version:', process.version); console.log('Platform:', process.platform); console.log('Architecture:', process.arch);\"",
"deps:check": "pnpm outdated",
"deps:update": "pnpm update --latest"
},
"keywords": [
"mcp",
"task-management",
"ai-agent",
"collaboration",
"development"
],
"author": "DeadWaveWave",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"fs-extra": "^11.2.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.6.1",
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1",
"eslint": "^8.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}