-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
{
"name": "folder-pane",
"version": "3.1.0",
"description": "Solid-compatible Panes: File browser",
"main": "lib/folder-pane.js",
"types": "declarations.d.ts",
"sideEffects": [
"**/*.css"
],
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run typecheck && webpack --config webpack.config.mjs && tsc --emitDeclarationOnly",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run build && npm run lint",
"preversion": "npm run typecheck && npm run lint",
"postpublish": "git push origin main --follow-tags",
"start": "webpack serve --config webpack.dev.config.mjs --open"
},
"files": [
"lib/",
"declarations.d.ts",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/folder-pane.git"
},
"keywords": [
"solid",
"file system explorer",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidOS/folder-pane/issues"
},
"homepage": "https://github.com/SolidOS/folder-pane",
"peerDependencies": {
"solid-logic": "^4.0.6",
"solid-ui": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/node": "^25.0.10",
"@typescript-eslint/parser": "^8.53.1",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.0.1",
"globals": "^17.1.0",
"html-webpack-plugin": "^5.6.6",
"node-polyfill-webpack-plugin": "^4.1.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.4.0",
"typescript": "^5.9.3",
"webpack": "^5.96.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"rdflib": "^2.3.6"
}
}