-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.94 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.94 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
{
"name": "claude-stacks",
"version": "1.5.0",
"description": "Share your Claude Code environment in seconds - export and import development stacks",
"main": "./dist/cli.js",
"type": "module",
"bin": {
"claude-stacks": "./dist/cli.js"
},
"scripts": {
"build": "tsc && npm run copy-grammars && npm run copy-queries",
"copy-grammars": "mkdir -p dist/grammars && cp src/grammars/*.wasm dist/grammars/ 2>/dev/null || true",
"copy-queries": "mkdir -p dist/queries/python dist/queries/bash dist/queries/js dist/queries/ts && cp src/queries/python/*.scm dist/queries/python/ 2>/dev/null || true && cp src/queries/bash/*.scm dist/queries/bash/ 2>/dev/null || true && cp src/queries/js/*.scm dist/queries/js/ 2>/dev/null || true && cp src/queries/ts/*.scm dist/queries/ts/ 2>/dev/null || true",
"scm": "node scripts/validate-queries.mjs",
"dev": "tsx src/setup.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"quality": "npm run lint && npm run format:check && npm run typecheck",
"quality:fix": "npm run lint:fix && npm run format",
"prepublishOnly": "npm run quality && npm run build && npm run scm",
"prepare": "husky",
"pretest": "npm run build",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch --coverage=false",
"test:coverage": "jest --coverage --coverage-reporters=html --coverage-reporters=text --coverage-reporters=json-summary",
"test:ci": "npm run build && jest --coverage --ci --watchAll=false --passWithNoTests",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"pretest:e2e": "npm run build",
"test:e2e": "jest tests/e2e --runInBand",
"test:performance": "jest tests/performance --runInBand",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache",
"test:clear": "jest --clearCache",
"test:update-snapshots": "jest --updateSnapshot",
"coverage:open": "open coverage/lcov-report/index.html",
"coverage:serve": "npx http-server coverage/lcov-report -p 8080",
"jsdoc:coverage": "typedoc --entryPointStrategy expand --out docs/jsdoc src --pretty --validation.notDocumented",
"docs": "typedoc --entryPointStrategy expand --out .tmp-docs src --validation.notDocumented --pretty 2>&1 | grep -E 'warning|error' | wc -l && rm -rf .tmp-docs"
},
"keywords": [
"claude",
"claude-code",
"development",
"environment",
"stack",
"export",
"restore",
"mcp",
"cli"
],
"author": "Commands.com",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.9.4",
"node-fetch": "^3.3.2",
"open": "^8.4.2",
"ora": "^8.0.1",
"web-tree-sitter": "^0.22.6"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@jest/test-sequencer": "^30.0.5",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.9",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"c8": "^10.1.3",
"documentation": "^14.0.3",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-node": "^30.0.5",
"jest-extended": "^6.0.0",
"jest-html-reporters": "^3.1.7",
"jest-mock-extended": "^4.0.0",
"jest-watch-typeahead": "^3.0.1",
"lint-staged": "^16.1.5",
"memfs": "^4.38.1",
"mock-fs": "^5.5.0",
"msw": "^2.10.5",
"nock": "^14.0.10",
"prettier": "^3.6.2",
"tmp": "^0.2.5",
"ts-jest": "^29.4.1",
"tsx": "^4.6.2",
"typedoc": "^0.28.11",
"typescript": "^5.3.3"
},
"files": [
"dist/",
"src/grammars/",
"README.md"
]
}