-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 KB
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": "vconsole",
"version": "3.16.0-alpha",
"description": "A lightweight, extendable front-end developer tool for mobile web page.",
"homepage": "https://github.com/Tencent/vConsole",
"files": [
"dist/*",
"build/vendor.d.ts",
"CHANGELOG*",
"README*"
],
"main": "dist/vconsole.min.js",
"typings": "dist/vconsole.min.d.ts",
"scripts": {
"build": "webpack --mode=production --progress --env target=web",
"build:wx": "webpack --mode=production --progress --env target=wx",
"build:typings": "node ./build/build.typings.js",
"build:dev": "webpack --mode=development --progress",
"watch": "webpack --mode=development --watch --progress",
"serve": "webpack serve --config webpack.serve.config --progress",
"test:pack": "npx npm-packlist"
},
"sideEffects": [
"lib/*",
"element/*",
"network/*",
"storage/*"
],
"keywords": [
"console",
"debug",
"mobile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Tencent/vConsole.git"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"copy-text-to-clipboard": "^3.0.1",
"core-js": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-block-scoping": "^7.16.0",
"@babel/plugin-transform-private-methods": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"less": "^4.1.2",
"less-loader": "^12.3.1",
"style-loader": "^4.0.0",
"svelte": "^5.53.10",
"svelte-loader": "^3.2.4",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.9.3",
"webpack": "^5.72.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
},
"author": "Tencent",
"license": "MIT"
}