-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.05 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
{
"name": "@rpamis/comet",
"version": "0.4.0-beta.4",
"description": "Agent Skill Harness Phase-Guarded Automation From Idea To Archive",
"keywords": [
"comet",
"openspec",
"superpowers",
"skills",
"workflow"
],
"license": "MIT",
"author": "benym",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"comet": "bin/comet.js"
},
"files": [
"dist",
"bin",
"assets",
"scripts/install/postinstall.js",
"!dist/**/*.test.js",
"!dist/**/__tests__"
],
"scripts": {
"build": "node build.js",
"build:dashboard": "vite build --config domains/dashboard/web/vite.config.mjs",
"dev:dashboard": "node scripts/dev-dashboard.mjs",
"build:classic-runtime": "node scripts/build/build-classic-runtime.mjs",
"dev": "tsc --watch",
"test": "vitest run",
"test:script-smoke": "vitest run test/domains/comet-classic/comet-scripts.test.ts",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint app/ domains/ platform/ && pnpm run lint:architecture",
"lint:architecture": "node scripts/lint/architecture.mjs",
"lint:fix": "eslint app/ domains/ platform/ --fix",
"format": "prettier --write app/ domains/ platform/",
"format:check": "prettier --check app/ domains/ platform/",
"benchmark:context": "node scripts/benchmark/context-compression-benchmark.mjs",
"benchmark:execution": "node scripts/benchmark/context-execution-benchmark.mjs",
"benchmark:classic": "node scripts/benchmark/classic-baseline-regression.mjs",
"benchmark:bundle": "pnpm build && node scripts/benchmark/comet-bundle-compatibility-benchmark.mjs",
"prepare": "node scripts/release/prepare.js",
"prepublishOnly": "node scripts/release/prepublish-check.js && node build.js",
"postinstall": "node scripts/install/postinstall.js"
},
"lint-staged": {
"app/**/*.{ts,tsx,js,mjs,cjs,json,md,yaml,yml}": "prettier --write",
"domains/**/*.{ts,tsx,js,mjs,cjs,json,md,yaml,yml}": "prettier --write",
"platform/**/*.{ts,tsx,js,mjs,cjs,json,md,yaml,yml}": "prettier --write"
},
"packageManager": "pnpm@10.18.3",
"overrides": {
"esbuild": "0.28.1"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^24.2.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.6",
"esbuild": "0.28.1",
"eslint": "^10.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vite": "7.3.6",
"vitest": "^4.1.6"
},
"dependencies": {
"@fission-ai/openspec": "^1.5.0",
"@inquirer/ansi": "^2.0.5",
"@inquirer/core": "^11.1.10",
"@inquirer/figures": "^2.0.5",
"@inquirer/prompts": "^8.4.3",
"@inquirer/type": "^4.0.5",
"commander": "^14.0.0",
"yaml": "^2.9.0"
}
}