-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "danjeong",
"description": "A starter theme for Ghost theme development",
"demo": "https://starter.ghost.io",
"version": "2.0.1",
"engines": {
"ghost": ">=5.0.0"
},
"license": "MIT",
"screenshots": {
"desktop": "assets/screenshot-desktop.jpg"
},
"scripts": {
"dev": "concurrently \"rollup -c --environment BUILD:development -w --minify\" \"npx tailwindcss -i ./assets/css/index.css -o ./assets/built/index.css --watch --minify\" ",
"build": "rollup -c --environment BUILD:production && npx tailwindcss -i ./assets/css/index.css -o ./assets/built/index.css --minify",
"zip": "npm run build && bestzip $npm_package_name.zip assets/* partials/* members/* *.hbs package.json",
"test": "npx gscan .",
"pretest": "npm run build"
},
"author": {
"name": "Ghost Foundation",
"email": "[email protected]",
"url": "https://ghost.org"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"Magazine"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/Koderpark/DanjeongTheme.git"
},
"bugs": "https://github.com/Koderpark/DanjeongTheme/issues",
"contributors": "https://github.com/Koderpark/DanjeongTheme/graphs/contributors",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"bestzip": "^2.2.1",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"rollup": "^3.18.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2"
},
"browserslist": [
"defaults"
],
"config": {
"card_assets": true,
"posts_per_page": 15,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1200
},
"xl": {
"width": 2000
}
},
"custom": {
"modified_headers": {
"type": "boolean",
"group": "homepage",
"default": false,
"description": "Custom headers for author of this theme, koderpark\n(Not recommanded to turn on)"
}
}
},
"type": "module",
"dependencies": {
"concurrently": "^8.2.1",
"tailwindcss": "^3.3.3"
}
}