-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "@mpxjs/mp-api-monitor",
"version": "0.0.12",
"description": "mini program api invoking monitor",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"type": "module",
"scripts": {
"build": "node ./script/build.js",
"build-dts": "tsc -p tsconfig.build.json && rollup -c rollup.dts.config.js",
"release": "node ./script/release.js",
"lint": "eslint . --ext .js --ext .ts",
"fix": "eslint . --fix --ext .js --ext .ts",
"docs": "typedoc",
"watch-docs": "typedoc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"docs",
"README.md"
],
"keywords": [
"miniprogram",
"api",
"monitor"
],
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "hiyuki",
"license": "Apache-2.0",
"dependencies": {
"miniprogram-api-typings": "^3.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"chalk": "^5.3.0",
"enquirer": "^2.4.0",
"esbuild": "^0.18.12",
"eslint": "^8.46.0",
"execa": "^7.2.0",
"minimist": "^1.2.8",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"semver": "^7.5.4",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.4",
"typescript": "^5.1.6"
}
}