-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "kanbanqube",
"version": "1.0.41",
"description": "Local-first Kanban board backed by normal files",
"license": "Apache-2.0",
"author": "Mathias Conradt",
"homepage": "https://github.com/mathiasconradt/kanbanqube#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasconradt/kanbanqube.git"
},
"bugs": {
"url": "https://github.com/mathiasconradt/kanbanqube/issues"
},
"keywords": [
"kanban",
"board",
"tasks",
"local-first",
"git",
"vault"
],
"engines": {
"node": ">=18"
},
"files": [
"server.js",
"app.js",
"config/",
"controllers/",
"middleware/",
"models/",
"routes/",
"services/",
"utils/",
"public/",
"demo_board.json",
"promo.jpg",
"screenshot.png",
"README.md",
"LICENSE"
],
"bin": {
"kanbanqube": "server.js"
},
"scripts": {
"start": "node server.js",
"desktop": "npm --prefix desktop start",
"test:desktop": "npm --prefix desktop test",
"test": "npm run check:registry && node --check server.js && node --check app.js && find config controllers middleware models routes services utils -name '*.js' -exec node --check {} \\; && node --check --input-type=module < public/app.js",
"check:registry": "node -e \"const fs=require('fs'); const lock=fs.readFileSync('package-lock.json','utf8'); if(/repox|jfrog/i.test(lock)){ console.error('package-lock.json must use public npm registry URLs, not local Repox/JFrog URLs.'); process.exit(1); }\"",
"prepublishOnly": "npm test"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"express": "^5.2.1"
}
}