forked from dom96/bsky-labeler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 800 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 800 Bytes
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
{
"name": "simplebskylabeler",
"version": "1.2.0",
"private": true,
"scripts": {
"createdb": "wrangler d1 create bskylabels --binding DB --update-config",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"types": "wrangler types",
"setup": "run-p setup:*",
"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.5.0",
"run-p": "^0.0.0",
"typescript": "^5.9.3",
"wrangler": "^4.77.0"
},
"dependencies": {
"@atcute/cbor": "^1.0.7",
"@atcute/client": "^2.0.9",
"just-has": "^2.3.0",
"just-template": "^2.2.0",
"uint8arrays": "^5.1.0"
}
}