-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "@solarpunkltd/swarm-chat-js",
"version": "0.0.2",
"description": "JS library for chatting on Swarm",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"swarm",
"js",
"chat"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Solar-Punk-Ltd/swarm-chat-js"
},
"bugs": {
"url": "https://github.com/Solar-Punk-Ltd/swarm-chat-js/issues"
},
"author": "[email protected]",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build"
},
"dependencies": {
"@ethersphere/bee-js": "^8.1.0",
"@solarpunkltd/gsoc": "^0.2.3",
"ethers": "^6.13.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.8",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-node-polyfills": "^0.19.0"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}