stackpack-cli 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +148 -0
- package/dist/cli.js +8 -0
- package/dist/program-D9mgsLIa.js +4702 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "stackpack-cli",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Local-first, privacy-focused terminal integration builder for JavaScript and TypeScript projects. Official tooling first, presets stay on your device.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Jc Espina <espinajc2004@gmail.com>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/espinajc2004-max/StackPack.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/espinajc2004-max/StackPack#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/espinajc2004-max/StackPack/issues"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"stackpack": "./dist/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18.17"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "tsx src/cli.ts",
|
|
27
|
+
"build": "tsdown",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"lint": "eslint .",
|
|
30
|
+
"format": "prettier --write .",
|
|
31
|
+
"format:check": "prettier --check .",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest",
|
|
34
|
+
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build",
|
|
35
|
+
"prepublishOnly": "npm run check"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"cli",
|
|
39
|
+
"scaffolding",
|
|
40
|
+
"vite",
|
|
41
|
+
"nextjs",
|
|
42
|
+
"react",
|
|
43
|
+
"integrations",
|
|
44
|
+
"local-first"
|
|
45
|
+
],
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@clack/prompts": "^1.7.0",
|
|
48
|
+
"commander": "^15.0.0",
|
|
49
|
+
"execa": "^10.0.0",
|
|
50
|
+
"fast-glob": "^3.3.3",
|
|
51
|
+
"jsonc-parser": "^3.3.1",
|
|
52
|
+
"picocolors": "^1.1.1",
|
|
53
|
+
"semver": "^7.8.5",
|
|
54
|
+
"validate-npm-package-name": "^7.0.2",
|
|
55
|
+
"zod": "^4.4.3"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@eslint/js": "^10.0.1",
|
|
59
|
+
"@types/node": "^26.1.1",
|
|
60
|
+
"@types/semver": "^7.7.1",
|
|
61
|
+
"@types/validate-npm-package-name": "^4.0.2",
|
|
62
|
+
"eslint": "^10.7.0",
|
|
63
|
+
"prettier": "^3.9.5",
|
|
64
|
+
"tsdown": "^0.22.9",
|
|
65
|
+
"tsx": "^4.23.1",
|
|
66
|
+
"typescript": "^6.0.3",
|
|
67
|
+
"typescript-eslint": "^8.64.0",
|
|
68
|
+
"vitest": "^4.1.10"
|
|
69
|
+
}
|
|
70
|
+
}
|