forked from Panfactum/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.53 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.53 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
{
"name": "panfactum-cli",
"module": "index.ts",
"type": "module",
"version": "0.0.1",
"scripts": {
"build:binary": "bun build --compile --minify --sourcemap ./src/index.ts ./src/files/**/*.* --define \"process.env.VERSION=\\\"$(jq -r .version package.json)\\\"\" --outfile ./bin/pf",
"check": "tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "bun test src/**/*.test.ts",
"test:watch": "bun test --watch src/**/*.test.ts",
"postinstall": "bun2nix -o bun.nix"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@types/bun": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^3.9.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unicorn": "^57.0.0",
"prettier": "^3.5.3"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-account": "^3.794.0",
"@aws-sdk/client-auto-scaling": "^3.787.0",
"@aws-sdk/client-dynamodb": "^3.787.0",
"@aws-sdk/client-ec2": "^3.796.0",
"@aws-sdk/client-ecr": "^3.787.0",
"@aws-sdk/client-ecr-public": "^3.787.0",
"@aws-sdk/client-eks": "^3.830.0",
"@aws-sdk/client-elastic-load-balancing-v2": "^3.830.0",
"@aws-sdk/client-iam": "^3.787.0",
"@aws-sdk/client-organizations": "^3.787.0",
"@aws-sdk/client-route-53": "^3.787.0",
"@aws-sdk/client-route-53-domains": "^3.787.0",
"@aws-sdk/client-s3": "^3.787.0",
"@aws-sdk/client-service-quotas": "^3.810.0",
"@aws-sdk/client-ssm": "^3.787.0",
"@aws-sdk/client-sts": "^3.787.0",
"@aws-sdk/signature-v4": "^3.374.0",
"@goauthentik/api": "^2025.4.0-1746018955",
"@inquirer/prompts": "^7.4.0",
"@kubernetes/client-node": "^1.1.2",
"@smithy/protocol-http": "^5.1.2",
"@types/ini": "^4.1.1",
"clipanion": "^4.0.0-rc.4",
"eslint-plugin-unused-imports": "^4.1.4",
"ini": "^5.0.0",
"init": "^0.1.2",
"listr2": "^8.3.2",
"open": "^10.1.2",
"picocolors": "^1.1.1",
"posthog-node": "^4.17.1",
"string-width": "^7.2.0",
"terminal-columns": "^2.0.0",
"terminal-link": "^4.0.0",
"typanion": "^3.14.0",
"wrap-ansi": "^9.0.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
}
}