-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "@capysc/cli",
"version": "0.6.1",
"description": "Capy CLI - SecretOps for the AI age",
"main": "dist/index.js",
"bin": {
"capy": "bin/capy",
"capy-dev": "bin/capy-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capysc/capy-cli.git"
},
"homepage": "https://docs.capy.sc",
"bugs": {
"url": "https://github.com/capysc/capy-cli/issues"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/index-dev.*",
"bin/capy"
],
"scripts": {
"build": "tsc",
"build:deploy-assets": "node scripts/build-deploy-assets.mjs",
"start": "ts-node ./bin/capy.ts",
"dev": "tsc --watch",
"capy-dev": "bun run build && node bin/capy-dev",
"preuninstall": "capy cleanup 2>/dev/null || true",
"prepublishOnly": "npm pkg delete bin.capy-dev",
"test": "bash tests/run-tests.sh",
"typecheck": "tsc --noEmit",
"test:e2e": "bun test tests/e2e/",
"test:plugins": "bash tests/plugins/run-plugin-tests.sh",
"test:plugins:cloudflare-workers": "bash tests/plugins/run-plugin-tests.sh cloudflare-workers",
"test:plugins:cloudflare-pages": "bash tests/plugins/run-plugin-tests.sh cloudflare-pages",
"test:plugins:vercel": "bash tests/plugins/run-plugin-tests.sh vercel",
"clean": "rm -rf dist build bin-pkg",
"bundle": "node build.esbuild.mjs",
"build:binary": "node scripts/build-binary.mjs"
},
"dependencies": {
"commander": "^11.0.0",
"dotenv": "^16.3.0",
"inquirer": "^12.9.6",
"open": "8.4.2",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"@types/proper-lockfile": "^4.1.4",
"@yao-pkg/pkg": "^6.14.2",
"esbuild": "^0.25.8",
"typescript": "^5.0.0"
},
"license": "AGPL-3.0-only",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"environment-variables",
"encryption",
"security"
]
}