-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
76 lines (76 loc) · 2.53 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
67
68
69
70
71
72
73
74
75
76
{
"name": "weconsole",
"version": "1.0.8",
"description": "功能全面、界面与体验对标 Chrome devtools 的可定制化的小程序开发调试面板",
"main": "dist/npm/index.js",
"types": "dist/npm/index.d.ts",
"miniprogram": "dist/npm",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"eslint": "npx eslint 'src/**/*.ts' 'build/**/*.js' '*.js'",
"stylelint": "npx stylelint 'src/**/*.scss'",
"fix:es": "npx eslint 'src/**/*.ts' 'build/**/*.js' '*.js' --fix",
"fix:style": "npx stylelint 'src/**/*.scss' --fix",
"lint": "npm run eslint && npm run stylelint",
"build:npm": "npx tsc --outDir ./dist/npm && node ./build/npm.js",
"build:full": "npx tsc --outDir ./dist/full && node ./build/full.js",
"build": "npm run lint && npm run build:npm && npm run build:full",
"dev": "npx tsc --outDir ./dist/full -w && node ./build/watch.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weimobGroup/WeConsole.git"
},
"keywords": [
"weconsole",
"console",
"debug",
"devtools",
"小程序",
"miniprogram"
],
"author": {
"name": "weimob",
"email": "weimob-tech@weimob.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/weimobGroup/WeConsole/issues"
},
"homepage": "https://github.com/weimobGroup/WeConsole#readme",
"devDependencies": {
"@mpkit/mpxml-parser": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"autoprefixer": "^10.2.4",
"cssnano": "^5.0.6",
"eslint": "^7.30.0",
"eslint-config-alloy": "^4.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"fse": "^4.0.1",
"junk": "^3.1.0",
"node-sass": "^5.0.0",
"postcss": "^8.3.5",
"relative": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"terser": "^5.7.1",
"typescript": "^4.3.5",
"watch": "^1.0.2"
},
"dependencies": {
"@mpkit/func-helper": "^1.1.2",
"@mpkit/types": "^1.1.2",
"@mpkit/util": "^1.1.2"
}
}