-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.97 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.97 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
{
"name": "@codebloom/scripts",
"version": "1.0.0",
"description": "Collection of Ink scripts used in development",
"scripts": {
"git-crypt-add-user": "pnpx esbuild git-crypt/add-user/source.tsx --outfile=git-crypt/add-user/index.js --banner:js=\"#!/usr/bin/env node\nimport { createRequire as topLevelCreateRequire } from 'module';\n const require = topLevelCreateRequire(import.meta.url);\" --bundle --minify=false --splitting=false --format=esm --platform=node --target=esnext --define:process.env.DEV='\"false\"'",
"git-crypt-generate-key": "pnpx esbuild git-crypt/generate-key/source.tsx --outfile=git-crypt/generate-key/index.js --banner:js=\"#!/usr/bin/env node\nimport { createRequire as topLevelCreateRequire } from 'module';\n const require = topLevelCreateRequire(import.meta.url);\" --bundle --minify=false --splitting=false --format=esm --platform=node --target=esnext --define:process.env.DEV='\"false\"'"
},
"type": "module",
"packageManager": "pnpm@10.15.1",
"devDependencies": {
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"eslint": "^9.39.1",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"react": "^19.2.0",
"react-devtools": "^7.0.1",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"cross-spawn": ">=6.0.6",
"electron": ">=35.7.5",
"got": ">=11.8.5",
"ink": "^6.4.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"js-yaml": ">=4.1.1"
},
"pnpm": {
"overrides": {
"cross-spawn": ">=6.0.6",
"electron": ">=35.7.5",
"got": ">=11.8.5",
"js-yaml": ">=4.1.1"
}
}
}