-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 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
{
"name": "structure",
"type": "module",
"workspaces": [
"client",
"common",
"config",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neopostmodern/structure.git"
},
"author": {
"name": "neopostmodern",
"email": "structure@neopostmodern.com",
"url": "https://github.com/neopostmodern"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/neopostmodern/structure/issues"
},
"keywords": [
"bookmarking",
"knowledgebase",
"notes",
"note-taking",
"structure"
],
"homepage": "https://structure.neopostmodern.com/",
"scripts": {
"client:build:electron": "(cd client && npm run package)",
"client:build:web": "(cd client && npm run build:web)",
"client:build:extension": "(cd client && npm run build:extension)",
"client:publish:electron": "(cd client && npm run package-publish)",
"client:start:electron": "(cd client && npm run start)",
"client:start:web": "(cd client && npm run start:web)",
"client:start:extension": "(cd client && npm run start:extension)",
"common:build": "(cd common && npm run build)",
"server:start": "(cd server && npm run start)",
"server:dev": "(cd server && npm run dev)",
"util:generate-types": "(cd server && npm run generate-graphql-schema-and-types) && (cd client && npm run generate-graphql-types)",
"util:create-release": "npx lerna version --conventional-commits --force-publish"
},
"devDependencies": {
"lerna": "^9.0.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.9.3"
},
"volta": {
"node": "25.0.0"
}
}