forked from rpamis/comet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.45 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
{
"name": "@rpamis/comet",
"version": "0.3.6",
"description": "OpenSpec + Superpowers dual-star development workflow",
"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/postinstall.js",
"!dist/**/*.test.js",
"!dist/**/__tests__"
],
"scripts": {
"build": "node build.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test:shell": "node scripts/run-bats.js test/shell/*.bats",
"prepare": "pnpm run build",
"prepublishOnly": "node scripts/prepublish-check.js && pnpm run build",
"postinstall": "node scripts/postinstall.js"
},
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.2.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.4.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
},
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"commander": "^14.0.0"
}
}