-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 841 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
29
30
{
"name": "shared-lists-starter",
"version": "0.1.0",
"description": "Reusable starter for private shared lists with D1-style storage and list-level permissions.",
"license": "Apache-2.0",
"private": false,
"type": "module",
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=24 <27",
"npm": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CBruney/shared-lists-starter.git"
},
"homepage": "https://github.com/CBruney/shared-lists-starter#readme",
"bugs": {
"url": "https://github.com/CBruney/shared-lists-starter/issues"
},
"scripts": {
"dev": "node scripts/dev-server.mjs",
"build": "node scripts/build.mjs",
"check": "npm test && npm run build",
"test": "node --test tests/*.test.mjs"
},
"devDependencies": {
"esbuild": "0.27.3"
}
}