-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "immers-client",
"version": "2.17.0",
"description": "Clients-side ActivityPub library for Immers Space",
"module": "dist/esm.bundle.js",
"sideEffects": [
"*.css"
],
"types": "types/index.d.ts",
"scripts": {
"test": "standard",
"doc": "jsdoc -c jsdoc.config.json -d doc -r source/. -R README.md && cp -R readme_files doc/",
"build": "webpack --config webpack.prod.js",
"type": "tsc index.js -t es2020 --declaration --skipLibCheck --allowJs --emitDeclarationOnly --moduleResolution node --outDir types",
"dev": "webpack serve --open --config webpack.dev.js",
"prepare": "npm run type && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/immers-space/immers-client.git"
},
"author": "Will Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/immers-space/immers-client/issues"
},
"homepage": "https://github.com/immers-space/immers-client#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"babel-loader": "^8.2.2",
"better-docs": "njetsy/better-docs-jsdoc4#chore/jsdoc4-update",
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.0.6",
"jsdoc": "^4.0.2",
"standard": "^16.0.3",
"style-loader": "^3.2.1",
"typescript": "^4.4.4",
"web-component-analyzer": "^1.1.6",
"webpack": "^5.69.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0",
"webpack-merge": "^5.8.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"env": {
"browser": true
}
},
"dependencies": {
"core-js": "^3.17.2",
"dompurify": "^2.3.6",
"socket.io-client": "^4.0.0"
}
}