-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.81 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.81 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
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "solid-panes",
"version": "4.2.3",
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": [
"*.css"
],
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist src/versionInfo.ts",
"build": "npm run clean && npm run build-version && npm run typecheck && npm run build-dist && npm run postbuild-js",
"build-version": "bash timestamp.sh > src/versionInfo.ts && ./node_modules/.bin/eslint 'src/versionInfo.ts' --fix",
"build-dist": "npm run build-js && npm run build-types",
"build-js": "babel src --out-dir dist --extensions '.ts,.js' --source-maps",
"build-types": "tsc --emitDeclarationOnly",
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",
"test": "jest --no-coverage",
"test-watch": "npm run lint && jest --onlyChanged --watch",
"test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
"prepublishOnly": "npm run build && npm run lint && npm test",
"preversion": "npm run lint && npm run typecheck && npm test",
"postversion": "git push origin main --follow-tags",
"watch": "npm run build-version && babel src -d dist --source-maps --extensions '.ts,.js' --watch",
"start": "webpack serve --config webpack.dev.config.mjs --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/solid-panes.git"
},
"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": "^1.0.1",
"chat-pane": "^3.0.1",
"contacts-pane": "^3.0.1",
"dompurify": "^3.3.1",
"folder-pane": "^3.0.1",
"issue-pane": "^3.0.1",
"marked": "^17.0.3",
"meeting-pane": "^3.0.1",
"mime-types": "^3.0.2",
"pane-registry": "^3.0.1",
"profile-pane": "^3.1.2",
"solid-namespace": "^0.5.4",
"source-pane": "^3.0.1"
},
"overrides": {
"rdflib": "$rdflib",
"solid-logic": "$solid-logic",
"solid-ui": "$solid-ui"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/parser": "^8.56.0",
"@webpack-cli/serve": "^3.0.1",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"babel-plugin-inline-import": "^3.0.0",
"buffer": "^6.0.3",
"css-loader": "^7.1.4",
"eslint": "^9.39.3",
"globals": "^17.3.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"neostandard": "^0.13.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"rdflib": "^2.3.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"solid-logic": "^4.0.3",
"solid-ui": "^3.0.4",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}