-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "@agen/rpc",
"version": "0.1.6",
"description": "Async Generator utilities",
"keywords": [
"async",
"generators"
],
"homepage": "https://github.com/agenjs/agen-rpc/",
"license": "BSD-3-Clause",
"author": {
"name": "Mikhail Kotelnikov"
},
"type": "module",
"files": [
"dist/**/package.json",
"dist/**/*.js",
"src/**/*.js"
],
"main": "dist/esm/agen-rpc-esm.js",
"module": "dist/esm/agen-rpc-esm.js",
"jsdelivr": "dist/cjs/agen-rpc.min.js",
"unpkg": "dist/cjs/agen-rpc.min.js",
"exports": {
"package.json": "./package.json",
"umd": "./dist/cjs/agen-rpc.min.js",
"require": "./dist/cjs/agen-rpc.js",
"default": "./dist/esm/agen-rpc-esm.js"
},
"repository": {
"type": "git",
"url": "https://github.com/agenjs/agen-rpc.git"
},
"scripts": {
"pretest": "rollup -c",
"test": "node ./test/index.js && eslint src",
"prepublishOnly": "rm -rf dist && yarn test",
"postpublish": "zip dist/agen-rpc.zip -- LICENSE README.md dist/**"
},
"sideEffects": false,
"dependencies": {},
"devDependencies": {
"@agen/utils": "^0.8.12",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "11",
"eslint": "7",
"pbf": "^3.2",
"protocol-buffers-schema": "^3.5",
"rollup": "2",
"rollup-plugin-generate-package-json": "3",
"rollup-plugin-terser": "7",
"tape": "4",
"tape-await": "0.1"
},
"publishConfig": {
"access": "public"
}
}