forked from alexander-heimbuch/vuepress-theme-casper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.36 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
{
"name": "vuepress-theme-casper",
"version": "3.0.1",
"description": "Ghosts Casper Theme for VuePress",
"main": "blog/.vuepress/theme/index.js",
"repository": "[email protected]:alexander-heimbuch/vuepress-theme-casper.git",
"author": "Alexander Heimbuch <[email protected]>",
"license": "MIT",
"scripts": {
"copy:casper:styles": "rm -rf blog/.vuepress/theme/styles && mkdir -p blog/.vuepress/theme/styles && cp node_modules/casper/assets/built/*.css blog/.vuepress/theme/styles/",
"copy:casper": "npm run copy:casper:styles",
"dev": "vuepress dev blog",
"build": "npm run copy:casper && rm -rf dist/ && vuepress build blog --dest dist/",
"bundle:clean": "rm -rf publish && mkdir -p publish",
"bundle:copy": "cp -R blog/.vuepress/theme/* publish/ && cp package.json publish/",
"bundle": "npm run build && npm run bundle:clean && npm run bundle:copy",
"deploy:gh-pages": "env BASE='/vuepress-theme-casper/' npm run build && [email protected] GH_NAME='Alexander Heimbuch' ./scripts/gh-pages.sh dist"
},
"dependencies": {
"lodash": "^4.17.15",
"striptags": "^3.1.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"casper": "[email protected]:TryGhost/Casper.git",
"vue": "2.6.11",
"vuepress": "1.4.0"
},
"peerDependencies": {
"vue": "2.6.x",
"vuepress": "1.4.0"
}
}