-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "solid-shim",
"version": "0.1.4",
"description": "Minimal Solid data browser using solid-panes-jss with solid-oidc authentication",
"type": "module",
"main": "dist/solid-shim.js",
"module": "dist/solid-shim.esm.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/solid-shim.esm.js",
"default": "./dist/solid-shim.js"
}
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/index.html",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build-dist",
"build-dist": "webpack --progress",
"build-prod": "npm run clean && NODE_ENV=production webpack --progress",
"start": "webpack serve --open",
"prepublishOnly": "npm run build-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JavaScriptSolidServer/solid-shim.git"
},
"keywords": [
"solid",
"data-browser",
"mashlib",
"solid-oidc",
"decentralized"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/JavaScriptSolidServer/solid-shim/issues"
},
"homepage": "https://github.com/JavaScriptSolidServer/solid-shim",
"dependencies": {
"pane-registry": "^3.0.0",
"rdflib": "^2.3.0",
"solid-namespace": "^0.5.4"
},
"devDependencies": {
"html-webpack-plugin": "^5.6.3",
"jose": "^6.1.3",
"terser-webpack-plugin": "^5.3.15",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}