-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.81 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
{
"name": "@enkryptify/cli",
"version": "0.4.2",
"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.18.1",
"commander": "^14.0.3",
"ink": "^7.1.0",
"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.41.0",
"prompts": "^2.4.2",
"react": "^19.2.7",
"react-devtools-core": "^7.0.1",
"semver": "^7.8.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^24.13.3",
"@types/prompts": "^2.4.9",
"@types/react": "^19.2.17",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.10",
"msw": "^2.15.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.73.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"overrides": {
"axios": "$axios",
"follow-redirects": ">=1.15.11",
"form-data": ">=4.0.6",
"picomatch": ">=4.0.4",
"shell-quote": ">=1.8.4",
"vite": ">=8.1.4",
"ws": ">=8.20.1"
}
}