-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.3 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "solid-panes",
"version": "3.7.3",
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types",
"build-form": "(cd src/schedule/ && make)",
"build-lib": "npm run build-form && babel src -d lib --source-maps --extensions '.ts,.js'",
"build-dev": "webpack --progress --mode=development",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"watch": "npm run build-version && babel src -d lib --source-maps --extensions '.ts,.js' --watch",
"clean": "rm -rf dist lib",
"lint": "eslint 'src/**/*.js' 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
"test": "npm run lint && jest src/**/*test*",
"test-watch": "npm run lint && jest --onlyChanged --watch",
"prepublishOnly": "npm test && npm run build",
"postversion": "git push origin main --follow-tags",
"start": "npm install && npm run build-version && npx webpack serve --open"
},
"repository": {
"type": "git",
"url": "https://github.com/solidos/solid-panes"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"panes",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/solid-panes/issues"
},
"homepage": "https://github.com/solidos/solid-panes",
"dependencies": {
"@solid/better-simple-slideshow": "^0.1.0",
"activitystreams-pane": "^0.7.1",
"chat-pane": "^2.5.1",
"contacts-pane": "^2.7.1",
"dompurify": "^3.2.6",
"folder-pane": "^2.5.1",
"issue-pane": "^2.6.1",
"lint-staged": "^16.2.0",
"marked": "^17.0.0",
"meeting-pane": "^2.5.1",
"mime-types": "^3.0.1",
"profile-pane": "^1.2.1",
"rdflib": "^2.2.37",
"solid-namespace": "^0.5.4",
"solid-ui": "^2.6.1",
"source-pane": "^2.3.1"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@types/jest": "^30.0.0",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@webpack-cli/serve": "^3.0.1",
"babel-loader": "^10.0.0",
"babel-plugin-inline-import": "^3.0.0",
"buffer": "^6.0.3",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jest-fetch-mock": "^3.0.3",
"node-polyfill-webpack-plugin": "^4.1.0",
"path-browserify": "^1.0.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}