-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "simplebskylabeler",
"version": "1.2.1",
"license": "MIT",
"homepage": "https://github.com/SocksTheWolf/SimpleBSkyLabeler",
"private": true,
"scripts": {
"deploy": "wrangler deploy --minify",
"dev": "wrangler dev",
"types": "wrangler types src/wrangler.d.ts",
"setup": "run-p setup:*",
"setup:create": "wrangler d1 create bskylabels --binding DB --update-config",
"setup:local": "wrangler d1 execute bskylabels --file setup.sql --local -y",
"setup:remote": "wrangler d1 execute bskylabels --file setup.sql --remote -y",
"setup:types": "npm run types"
},
"devDependencies": {
"@types/node": "^25.9.5",
"npm-run-all2": "^9.0.3",
"typescript": "^6.0.3",
"wrangler": "^4.120.1"
},
"dependencies": {
"@atcute/cbor": "^1.0.7",
"@atcute/client": "^2.0.9",
"just-has": "^2.3.0",
"just-template": "^2.2.0",
"uint8arrays": "^6.1.1"
},
"overrides": {
"@actions/github": {
"undici": "^7.29.0"
},
"@actions/http-client": {
"undici": "^7.29.0"
}
}
}