-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "issue-pane",
"version": "3.0.2",
"description": "Solid-compatible Panes: issue editor",
"main": "dist/issuePane.js",
"sideEffects": false,
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build-dist",
"build-dist": "webpack --progress",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run build && npm run lint",
"preversion": "npm run lint",
"postpublish": "git push origin main --follow-tags",
"start": "webpack serve --config webpack.dev.config.mjs --open"
},
"repository": {
"type": "git",
"url": "https://github.com/SolidOS/issue-pane"
},
"keywords": [
"solid",
"issue tracker",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidOS/issue-pane/issues"
},
"homepage": "https://github.com/SolidOS/issue-pane",
"dependencies": {
"@babel/runtime": "^7.28.6"
},
"peerDependencies": {
"rdflib": "^2.3.5",
"solid-logic": "^4.0.2",
"solid-ui": "^3.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.28.6",
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"babel-loader": "^10.0.0",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"html-webpack-plugin": "^5.6.6",
"neostandard": "^0.13.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"rdflib": "^2.3.6",
"solid-logic": "^4.0.6",
"solid-ui": "^3.0.5",
"webpack-cli": "^7.0.0",
"webpack-dev-server": "^5.2.3"
}
}