-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"name": "docsify-material-icons",
"version": "0.1.0",
"description": "A simple Material Icons plugin for Docsify",
"main": "src",
"files": [
"src",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/erickjx/docsify-material-icons.git"
},
"author": "Erick JA",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/erickjx/docsify-material-icons/issues"
},
"homepage": "https://github.com/erickjx/docsify-material-icons#readme",
"dependencies": {},
"devDependencies": {
"docsify-cli": "4.4.4",
"license-checker": "latest",
"npm-check-updates": "latest",
"prettier": "3.3.3",
"webpack": "5.95.0",
"webpack-cli": "5.1.4"
},
"directories": {
"example": "example"
},
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack ./src/index.js -o ./dist/ --output-filename docsify-material-icons.js --mode=development && webpack ./src/index.js -o ./example/ --output-filename docsify-material-icons.js --mode=development",
"build:prod": "webpack ./src/index.js -o ./dist/ --output-filename docsify-material-icons.min.js --mode=production",
"prettier:format": "npx prettier --write \"{,src/**/,example/**/}*.{md,json,js,ts,html,css,scss,yml}\"",
"prettier:check": "npx prettier --list-different \"{,src/**/,example/**/}*.{md,json,js,ts,html,css,scss,yml}\" ",
"example": "npm run build && npx docsify serve example --open",
"lic-chk": "npx license-checker",
"lib-chk": "npx ncu",
"lib-chk-up": "npx ncu -u"
},
"keywords": [
"Docsify",
"Material Icos"
]
}