forked from boopathikumar018/docsify-darklight-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.06 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": "docsify-darklight-theme",
"version": "3.0.6",
"description": "Enables dark and light mode for docsify sites with switch",
"main": "dist/index.min.js",
"scripts": {
"fixlint": "standard --fix",
"test": "standard",
"prebuild": "del-cli dist",
"build": "npm run build:css && npm run build:docsify-css && npm run build:js",
"build:js": "rollup docs/js/index.js -o dist/index.min.js --config rollup.config.js && rollup themeableDocs/js/main.js -o dist/docsify-themeable/main.min.js --config rollup.config.js && rollup themeableDocs/js/index.js -o dist/docsify-themeable/index.min.js --config rollup.config.js",
"build:css": "postcss docs/css/style.css -o dist/style.min.css --config postcss.config.js && postcss themeableDocs/css/index.css -o dist/docsify-themeable/style.min.css --config postcss.config.js",
"build:docsify-css": "postcss docs/css/docsify-style.css -o dist/docsify-style.min.css --config postcss.config.js",
"postbuild": "cpy docs/css/style.css starter/css/",
"postinstall": "cpy starter ../../documentation/ --dot"
},
"files": [
"dist",
"starter",
"icons"
],
"keywords": [
"docsify",
"docsify-themeable",
"plugin",
"dark-mode",
"light-mode",
"theme",
"docsify-plugin",
"template",
"docsify-starter"
],
"author": {
"name": "Boopathi Kumar",
"email": "boopathikumar018@gmail.com",
"url": "https://github.com/boopathikumar018"
},
"license": "MIT",
"standard": {
"ignore": [
"dist/*"
],
"globals": [
"localStorage",
"document",
"cpy"
]
},
"repository": "boopathikumar018/docsify-darklight-theme",
"homepage": "docsify-darklight-theme.boopathikumar.me",
"devDependencies": {
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"del-cli": "^3.0.0",
"postcss": "^7.0.26",
"postcss-cli": "^7.1.0",
"postcss-preset-env": "^6.7.0",
"rollup": "^1.31.1",
"rollup-plugin-terser": "^5.2.0",
"standard": "^14.3.1",
"cpy-cli": "^3.1.0"
},
"dependencies": {
"cpy-cli": "^3.1.0"
}
}