-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "tsrpc-browser",
"version": "3.4.16",
"description": "TSRPC Client for browser",
"main": "index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"scripts": {
"pretest": "cd test && npm i & cd ..",
"test": "cd test && npm i && npm test & cd ..",
"dev": "cd test && npm run dev & cd..",
"coverage": "nyc mocha test/**/*.test.ts && start coverage\\index.html",
"build": "npm run build:js && npm run build:dts && cp package.json LICENSE README.md dist/",
"build:js": "rm -rf dist && npx rollup -c",
"build:dts": "rm -rf lib && npx tsc && npx api-extractor run --local --verbose && node scripts/postDts.js && rm -rf lib",
"build:doc": "rm -rf docs/api && npx api-documenter markdown --input temp --output docs/api"
},
"repository": {
"type": "git",
"url": "https://github.com/k8w/tsrpc-browser.git"
},
"keywords": [
"k8w",
"kingworks",
"tsrpc",
"typescript",
"fullstack",
"rpc",
"framework",
"ajax",
"fetch",
"axios",
"request",
"tsbuffer",
"fullts"
],
"author": "k8w",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@microsoft/api-documenter": "^7.24.2",
"@microsoft/api-extractor": "^7.43.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^4.9.5"
},
"typings": "index.d.ts",
"dependencies": {
"core-js": "*",
"tsrpc-base-client": "^2.1.15"
},
"browserslist": [
"defaults",
"chrome 30",
"ie 10"
]
}