forked from anomalyco/opencontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "opencontrol",
"private": true,
"type": "module",
"packageManager": "bun",
"description": "Control infrastructure from code",
"scripts": {
"build": "bun run --cwd packages/opencontrol build",
"dev": "bun run --cwd packages/opencontrol dev",
"format": "./scripts/format",
"release": "./scripts/release",
"sso": "aws sso login --sso-session=sst --no-browser --use-device-code"
},
"workspaces": [
"packages/*",
"app/*",
"examples/*",
"www"
],
"devDependencies": {
"@changesets/cli": "2.28.1",
"@tsconfig/node22": "22.0.0",
"@types/aws-lambda": "8.10.147",
"@types/node": "^22.13.9",
"prettier": "^3.5.3",
"sst": "3.13.9",
"typescript": "5.8.2"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sst/opencontrol"
},
"license": "MIT",
"prettier": {
"semi": false
},
"trustedDependencies": [
"@rocicorp/zero-sqlite3",
"esbuild",
"protobufjs"
],
"dependencies": {
"pulumi-stripe": "0.0.24"
}
}