-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.44 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.44 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": "profile-pane",
"version": "3.2.2",
"description": "A SolidOS compatible pane to display a personal profile page",
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/profile-pane.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"/icons-png",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run typecheck && npm run build-dist && npm run build-js",
"build-js": "babel src --out-dir lib --extensions '.ts' --copy-files && tsc --emitDeclarationOnly",
"build-dist": "webpack --progress",
"dev": "sh -c 'npm run watch & npm run start'",
"watch": "sh -c 'npm run watch:solid-ui & npm run watch-js & npm run watch-styles & npm run watch-dist & wait'",
"watch:workspace": "sh -c 'npm run watch-js & npm run watch-styles & npm run watch-dist & wait'",
"watch:solid-ui": "sh -c 'cd ../solid-ui && npm run watch'",
"watch-js": "babel src --out-dir lib --extensions '.ts' --copy-files --watch",
"watch-styles": "node scripts/watch-styles.mjs",
"watch-dist": "webpack --watch",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "jest --no-coverage",
"test-coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",
"prepush": "npm test && npm run lint-fix && npm run typecheck && npm run typecheck-test",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run lint && npm run typecheck && npm test",
"postpublish": "git push origin main --follow-tags",
"start": "webpack serve --config webpack.dev.config.mjs --open"
},
"keywords": [
"solid",
"profile",
"pane",
"solid-panes",
"solidos"
],
"author": {
"name": "Angelo Veltens",
"email": "angelo.veltens@online.de",
"url": "https://angelo.veltens.org/profile/card#me"
},
"license": "MIT",
"dependencies": {
"@solid-data-modules/contacts-rdflib": "^0.7.1",
"lit-html": "^3.3.3",
"pane-registry": "^3.1.1",
"qrcode": "^1.5.4",
"validate-color": "^2.2.4"
},
"peerDependencies": {
"rdflib": "^2.3.6",
"solid-logic": "^4.0.6",
"solid-ui": "^3.1.1"
},
"overrides": {
"solid-ui": "$solid-ui"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"@babel/preset-typescript": "^7.28.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"axe-core": "^4.11.4",
"babel-jest": "^30.4.1",
"babel-loader": "^10.1.1",
"babel-plugin-inline-import": "^3.0.0",
"chat-pane": "^3.0.3",
"contacts-pane": "^3.2.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.39.4",
"html-webpack-plugin": "^5.6.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^29.1.1",
"node-polyfill-webpack-plugin": "^4.1.0",
"rdflib": "^2.3.8",
"solid-logic": "^4.0.7",
"solid-ui": "^3.1.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.6.0",
"ts-loader": "^9.5.7",
"typescript": "^6.0.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.4"
}
}