-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@wexond/rpc",
"version": "1.0.0",
"description": "Type-safe inter-process communication",
"private": true,
"homepage": "https://github.com/wexond/rpc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wexond/rpc.git"
},
"scripts": {
"watch": "lerna run --stream --parallel watch",
"build:prod": "lerna run --stream build:prod",
"prepublishOnly": "npm run build:prod",
"postinstall": "lerna link --force-local && yarn build:prod",
"test": "lerna run --stream test"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/deasync": "^0.1.1",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"@types/sinon": "^9.0.10",
"chai": "^4.3.0",
"deasync": "^0.1.21",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"lerna": "^3.22.1",
"mocha": "^8.2.1",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"ts-node": "^9.1.1",
"typescript": "4.1.3"
},
"workspaces": [
"packages/*"
]
}