-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.16 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "chat-pane",
"version": "2.4.26",
"description": "Solid-compatible Panes: Chat",
"main": "./lib/main.js",
"files": [
"src",
"lib",
"dist"
],
"scripts": {
"build": "npm run clean && webpack && npm run build-lib",
"build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'",
"clean": "rm -rf lib && rm -rf dist",
"test": "npm run lint && jest",
"lint": "eslint '*.js'",
"lint-fix": "eslint '*.js' --fix",
"prepublishOnly": "npm test && npm run build && npm run build-lib",
"postpublish": "git push origin main --follow-tags",
"watch": "webpack --watch",
"start": "webpack serve --open",
"dev": "webpack serve --config webpack.dev.config.js --open"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/chat-pane"
},
"keywords": [
"solid",
"chat",
"message",
"discusssion",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/chat-pane/issues"
},
"homepage": "https://github.com/solid/chat-pane",
"dependencies": {
"rdflib": "^2.2.34",
"solid-logic": "^3.0.7",
"solid-ui": "^2.4.33"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^5.17.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"babel-loader": "^8.3.0",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.5.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"typescript": "^4.9.5",
"webpack": "^5.91.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}