-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.55 KB
/
package.json
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
{
"name": "folder-pane",
"version": "2.4.27",
"description": "Solid-compatible Panes: File browser",
"main": "./lib/folderPane.js",
"scripts": {
"build": "npm run clean && tsc",
"lint": "eslint './src'",
"lint-fix": "eslint './src' --fix",
"clean": "rm -rf lib",
"test": "npm run lint",
"check": "npm run lint && npm run build && npm run test",
"prepublishOnly": "npm run build && npm run test",
"postpublish": "git push origin main --follow-tags"
},
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/solid/folder-pane"
},
"keywords": [
"solid",
"file system explorer",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/folder-pane/issues"
},
"homepage": "https://github.com/solid/folder-pane",
"dependencies": {
"solid-logic": "^3.0.7",
"solid-ui": "^2.4.33"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"typescript": "^5.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}