-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 909 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 909 Bytes
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
{
"name": "@push-rpc/next",
"version": "3.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -fr dist && tsc -p tsconfig.cjs.json",
"test": "NODE_OPTIONS='--loader ts-node/esm' mocha tests/**/*.ts"
},
"repository": "https://github.com/vasyas/push-rpc.git",
"author": "vasyas <vasyl@stashuk.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"fast-stringify": "^2.0.0",
"nanoid": "^3.3.7"
},
"peerDependencies": {
"ws": "^8.16.0"
},
"peerDependenciesMeta": {
"ws": {
"optional": true
}
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/ws": "^8.5.10",
"chai": "^4.4.1",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}