-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 4.11 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "data-kitchen",
"author": "Jeff Zucker <dubzed@gmail.com>",
"version": "2.2.0",
"type": "module",
"description": "Electron app packaging a Solid server (pivot), a CORS proxy, and a shell for Solid & federated apps.",
"homepage": "https://github.com/solidOS/data-kitchen",
"main": "./electron-config/main.cjs",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"postinstall": "cd pivot && npm install",
"start": "electron .",
"start-css": "cd pivot && node run-server.cjs .. 8000",
"build-pivot-config": "bash pivot/build-compiled-config.sh",
"start-proxy": "node proxy/index.cjs",
"build": "node esbuild.config.mjs",
"watch": "node esbuild.config.mjs --watch",
"serve": "python3 -m http.server 8081",
"build-shell": "node tools/build-shell.mjs",
"rdf2html": "node tools/conversion/rdf2html.mjs",
"html2rdf": "node tools/conversion/html2rdf.mjs",
"test": "node --test \"test/unit/**/*.test.mjs\" \"test/data/**/*.test.mjs\" \"test/roundtrip/**/*.test.mjs\" \"test/integration/**/*.test.mjs\"",
"test:unit": "node --test \"test/unit/**/*.test.mjs\" \"test/data/**/*.test.mjs\"",
"test:roundtrip": "node --test \"test/roundtrip/**/*.test.mjs\"",
"test:integration": "node --test \"test/integration/**/*.test.mjs\"",
"test:e2e": "node test/e2e/run.mjs",
"test:mobile": "node --test \"mobile/test/node/**/*.test.mjs\"",
"dist": "electron-builder",
"dist:cross": "electron-builder --linux AppImage --mac zip --win zip",
"dist:web": "node --preserve-symlinks tools/build-web.mjs",
"serve:web": "node tools/serve-static.mjs",
"pull-defaults": "node --preserve-symlinks tools/pull-defaults.mjs",
"dist:android": "bash mobile/tool/build-apk.sh",
"release:prep": "node tools/prepare-release.mjs",
"release:check": "node tools/prepare-release.mjs --check",
"release:smoke": "node tools/packaged-smoke.mjs"
},
"dependencies": {
"electron-reloader": "^1.2.3",
"mashlib": "^2.2.2",
"music-metadata": "^11.13.0",
"open-media-player": "^0.3.0",
"sol-components": "^2.4.1"
},
"devDependencies": {
"component-interop": "^0.3.0",
"electron": "^41.10.4",
"electron-builder": "^26.15.3",
"esbuild": "^0.28.1",
"n3": "^2.0.4",
"playwright-core": "^1.61.0",
"rdf-validate-shacl": "^0.6.5"
},
"build": {
"appId": "com.data-kitchen",
"productName": "Solid Data Kitchen",
"artifactName": "Solid_Data_Kitchen-${version}-${os}-${arch}.${ext}",
"asar": false,
"files": [
"electron-config/**",
"proxy/**",
"router/**",
"server-core.cjs",
"pod-template/**",
"pivot-config/**",
"pivot/**",
"index.html",
"dk.manifest.json",
"dokieli.manifest.json",
"dist/dk.bundle.js",
"src/**",
"plugins/**",
"assets/**",
"ui-data/**",
"help/**",
"pages/**",
"shapes/**",
"favourites/**",
"!**/*.map",
"!**/node_modules/sol-components/{node_modules,coverage,tests,tests-disabled,docs,drafts,examples,claude}/**",
"!**/node_modules/open-media-player/{node_modules,tests,tools,claude,drafts}/**",
"!claude/**",
"!tools/**",
"!variants/**",
"!test/**",
"!.internal/**",
"!notes.md"
],
"extraResources": [
{
"from": "pivot/node_modules",
"to": "app/pivot/node_modules",
"filter": [
"**/*"
]
}
],
"directories": {
"buildResources": "build",
"output": "release"
},
"linux": {
"icon": "assets/icons/dk-512.png",
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Utility"
},
"win": {
"icon": "assets/dk-logo.ico",
"target": [
"portable",
"nsis"
],
"signAndEditExecutable": false
},
"mac": {
"icon": "assets/icons/dk-512.png",
"target": [
"dmg",
"zip"
]
}
},
"overrides": {
"parse-url": "^8.1.0",
"gry": "^6.0.0",
"got": "^11.8.5",
"tmp": "^0.2.6",
"nodemailer": "^9.0.1",
"uuid": "^11.1.1",
"tar": "^7.5.16"
}
}