-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 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
{
"name": "@enkryptify/cli",
"version": "0.4.0",
"bin": {
"ek": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node --minify",
"package": "bun build src/cli.ts --compile --outfile bin/ek",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"typecheck": "tsc --noEmit",
"build:dev": "./scripts/build-dev.sh",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@t3-oss/env-core": "^0.13.11",
"axios": "^1.15.2",
"commander": "^14.0.3",
"ink": "^7.0.1",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"keytar": "^7.9.0",
"open": "^11.0.0",
"posthog-node": "^5.30.6",
"prompts": "^2.4.2",
"react": "^19.2.5",
"react-devtools-core": "^7.0.1",
"semver": "^7.7.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/node": "^24.12.2",
"@types/prompts": "^2.4.9",
"@types/react": "^19.2.14",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.5",
"msw": "^2.13.6",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"overrides": {
"axios": "$axios",
"follow-redirects": ">=1.15.11",
"picomatch": ">=4.0.4",
"vite": ">=8.0.4"
}
}