-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.43 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
{
"name": "buckle-cli",
"version": "0.3.0",
"description": "One verb for devcontainers — generate, build, up, and bash with user-wide templates.",
"license": "MIT",
"author": "Buckle Contributors",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"buckle": "bin/buckle.mjs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"src/templates/builtin",
"docs",
"LICENSE",
"README.md",
"SECURITY.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\"",
"format": "prettier --write \"src/**/*.{ts,tsx,yaml,json}\" \"test/**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepack": "npm run build",
"prepare": "husky",
"buckle": "node --enable-source-maps bin/buckle.mjs"
},
"dependencies": {
"commander": "^12.1.0",
"execa": "^9.5.1",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.1.8",
"ink-testing-library": "^4.0.0",
"prettier": "^3.3.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^4.1.5"
},
"keywords": [
"devcontainer",
"docker",
"cli",
"tui",
"developer-tools",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/entropyvortex/buckle.git"
},
"homepage": "https://github.com/entropyvortex/buckle#readme",
"bugs": {
"url": "https://github.com/entropyvortex/buckle/issues"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
],
"test/**/*.{ts,tsx}": [
"eslint --fix --max-warnings=999"
]
},
"overrides": {
"esbuild": "0.28.1",
"js-yaml": "4.3.1",
"postcss": "8.5.23",
"brace-expansion@1": "1.1.18",
"brace-expansion@5": "5.0.9"
}
}