-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.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
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
{
"name": "data-kitchen",
"author": "Jeff Zucker",
"version": "2.0.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",
"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",
"dist": "electron-builder"
},
"dependencies": {
"component-interop": "^0.3.0",
"electron-reloader": "^1.2.3",
"mashlib": "^2.2.2",
"music-metadata": "^11.13.0",
"sol-components": "^2.4.1"
},
"devDependencies": {
"electron": "^40.1.0",
"electron-builder": "^24.0.0",
"esbuild": "^0.27.5",
"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}.${ext}",
"asar": false,
"files": [
"electron-config/**",
"proxy/**",
"router/**",
"pivot-config/**",
"pivot/**",
"index.html",
"dk.manifest.json",
"dist/dk.bundle.js",
"src/**",
"plugins/**",
"assets/**",
"data/**",
"help/**",
"pages/**",
"shapes/**",
"favourites/**",
"!**/*.map",
"!**/node_modules/sol-components/{node_modules,coverage,tests,tests-disabled,docs,drafts,examples,claude}/**",
"!**/node_modules/component-interop/{node_modules,tests,examples,help,claude,drafts}/**",
"!claude/**",
"!tools/**",
"!test/**",
"!.internal/**",
"!notes.md"
],
"extraResources": [
{
"from": "pivot/node_modules",
"to": "app/pivot/node_modules",
"filter": [
"**/*"
]
}
],
"directories": {
"buildResources": "build",
"output": "release"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Utility"
},
"win": {
"target": [
"portable",
"nsis"
]
},
"mac": {
"target": [
"dmg",
"zip"
]
}
}
}