-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "derekcroote-site-tools",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.3",
"description": "Development tools for derekcroote.com",
"scripts": {
"test": "tsx --test subscribe-worker/test/*.test.ts",
"typecheck": "tsc --noEmit",
"check": "pnpm typecheck && pnpm test",
"worker:deploy": "wrangler deploy --config subscribe-worker/wrangler.toml",
"worker:dev": "wrangler dev --config subscribe-worker/wrangler.toml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcroote/dcroote.github.io.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dcroote/dcroote.github.io/issues"
},
"homepage": "https://github.com/dcroote/dcroote.github.io#readme",
"devDependencies": {
"@cloudflare/workers-types": "^5.20260809.1",
"@types/node": "^26.2.0",
"tsx": "^4.23.11",
"typescript": "^7.0.2",
"wrangler": "^4.120.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
]
}
}