-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "@ggoodman/rpc",
"version": "0.4.0",
"description": "A fully-typed, transport-agnostic, bi-directional RPC framework that also supports passing functions as parameters and returning functions as results.",
"browser": "dist/dist-browser/index.js",
"main": "dist/dist-main/index.js",
"module": "dist/dist-module/index.mjs",
"unpkg": "dist/dist-unpkg/index.min.js",
"types": "./dist/dist-main/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"prepack": "npm run build",
"preversion": "npm run build && npm run test",
"test": "ts-lab -fSv"
},
"keywords": [],
"author": "Geoff Goodman <[email protected]> (https://[email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:ggoodman/rpc.git"
},
"homepage": "https://github.com/ggoodman/rpc",
"dependencies": {
"ts-primitives": "^1.1.0"
},
"devDependencies": {
"@ggoodman/ts-lab": "^1.0.1",
"@wessberg/rollup-plugin-ts": "^1.1.80",
"prettier": "^1.19.1",
"rollup": "^1.27.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"typescript": "^3.7.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
}
}