-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "solid-media",
"version": "1.0.3",
"description": "A media profile app build on Solid",
"homepage": "https://OxfordHCC.github.io/solid-media",
"repository": {
"type": "git",
"url": "git+https://github.com/OxfordHCC/solid-media"
},
"engines": {
"node": ">=14.x"
},
"type": "module",
"main": "index.js",
"scripts": {
"preinstall": "npm-force-resolutions",
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build && ncp ./src/.nojekyll ./build/.nojekyll",
"deploy": "gh-pages -d build -t true"
},
"author": "OxfordHCC",
"dependencies": {
"@inrupt/solid-client": "^1.30.2",
"@inrupt/solid-client-authn-browser": "^1.11.7",
"@inrupt/vocab-common-rdf": "^1.0.3",
"@tanstack/react-query": "^5.80.7",
"node-gyp": "^9.3.1",
"preact": "^10.7.1",
"rdflib": "^2.2.19",
"wouter-preact": "^2.7.5",
"zustand": "^5.0.5"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.1",
"gh-pages": "^3.2.3",
"ncp": "^2.0.0",
"npm-force-resolutions": "^0.0.10",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"resolutions": {
"rollup-plugin-polyfill-node": "0.7.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 1 Safari version"
]
}