-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "mp-darkmode",
"version": "1.1.8",
"description": "微信公众平台图文 Dark Mode 转换算法",
"main": "dist/darkmode.min.js",
"dependencies": {
"color": "^3.1.2",
"color-name": "^1.1.4"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"dev": "webpack --config build/dev.config.js --watch",
"build": "webpack --config build/prod.config.js",
"genDemo": "node build/genDemo.js"
},
"files": [
"dist",
"doc",
"LICENSE",
"package.json",
"README_CN.md",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wechatjs/mp-darkmode.git"
},
"keywords": [
"Darkmode"
],
"author": "WeChat",
"license": "MIT",
"bugs": {
"url": "https://github.com/wechatjs/mp-darkmode/issues"
},
"homepage": "https://github.com/wechatjs/mp-darkmode#readme"
}