-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "typora-themeable",
"version": "1.1.0",
"description": "Typora-themeable is a clean, customizable, typography-focused theme for the markdown editor, Typora.",
"author": "John Hildenbiddle <http://hildenbiddle.com>",
"license": "MIT",
"homepage": "https://github.com/jhildenbiddle/typora-themeable",
"repository": {
"type": "git",
"url": "git+https://[email protected]/jhildenbiddle/typora-themeable.git"
},
"bugs": {
"url": "https://github.com/jhildenbiddle/typora-themeable/issues"
},
"keywords": [
"typora",
"markdown",
"theme",
"themeable",
"dark",
"light",
"custom",
"properties",
"variables",
"typography"
],
"files": [
"DEMO.md",
"dist"
],
"style": "dist/themeable.css",
"scripts": {
"build": "npm run build:css && npm run build:fonts",
"build:css": "postcss {src,src/themeable/**}/*.css --dir dist --base src",
"build:fonts": "cpy 'src/themeable/fonts/*' 'dist/themeable/fonts/'",
"build:zip": "cd dist && rimraf --glob *.zip && zip typora-themeable -r ./* && zip typora-themeable -j ../themeable.md",
"clean": "rimraf --glob dist/*",
"lint": "markdownlint . --ignore node_modules",
"prepare": "npm run clean && npm run build",
"serve": "node server.js",
"start": "npm run prepare && npm run serve & npm run watch",
"version": "npm run lint && npm run prepare && git add -A",
"watch": "npm run build:css -- -w"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"cpy-cli": "^5.0.0",
"markdownlint-cli": "^0.39.0",
"postcss-banner": "^4.0.1",
"postcss-cli": "^11.0.0",
"postcss-discard-comments": "^6.0.2",
"postcss-import": "^16.0.1",
"rimraf": "^5.0.5"
}
}