-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
64
65
66
{
"name": "@huolala-tech/page-spy-alipay",
"version": "2.1.1",
"description": "A developer tool for debugging alipay miniprogram",
"license": "MIT",
"main": "dist/esm/index.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"homepage": "https://www.pagespy.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/HuolalaTech/page-spy.git"
},
"keywords": [
"pagespy",
"debug",
"remote",
"inspect",
"devtools"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"dependencies": {
"@huolala-tech/page-spy-mp-base": "^2.1.1",
"@huolala-tech/page-spy-types": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.0",
"@huolala-tech/eval5": "^0.0.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"core-js": "3",
"rollup": "^3.10.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.34.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"browserslist": [
"chrome > 75",
"safari > 12",
"> 0.1%",
"not dead",
"not op_mini all"
],
"publishConfig": {
"access": "public"
}
}