-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "folder-pane",
"version": "3.0.2",
"description": "Solid-compatible Panes: File browser",
"main": "lib/folderPane.js",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run typecheck && tsc",
"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"
},
"files": [
"lib/",
"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.0.5"
},
"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",
"eslint": "^10.0.1",
"globals": "^17.1.0",
"typescript": "^5.9.3"
},
"dependencies": {
"rdflib": "^2.3.6"
}
}