-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.89 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
{
"name": "@rpamis/comet",
"version": "0.3.11",
"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/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",
"benchmark:context": "node scripts/context-compression-benchmark.mjs",
"benchmark:execution": "node scripts/context-execution-benchmark.mjs",
"prepare": "husky && pnpm run build",
"prepublishOnly": "node scripts/prepublish-check.js && pnpm run build",
"postinstall": "node scripts/postinstall.js"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,mjs,cjs,json,md,yaml,yml}": "prettier --write"
},
"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",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
},
"dependencies": {
"@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"
}
}