-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.37 KB
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
99
100
101
102
103
104
105
106
{
"author": {
"name": "Ivan Robles",
"email": "irae45@gmail.com",
"url": "https://ivanrobles.pro/"
},
"browserslist": [
"defaults"
],
"bugs": "https://github.com/Sharmaz/the-sharmaz/issues",
"config": {
"card_assets": true,
"custom": {
"feed_layout": {
"default": "Classic",
"group": "homepage",
"options": [
"Classic",
"Grid",
"List"
],
"type": "select"
}
},
"image_sizes": {
"l": {
"width": 1200
},
"m": {
"width": 600
},
"s": {
"width": 300
},
"xl": {
"width": 2000
},
"xs": {
"width": 100
},
"xxs": {
"width": 30
}
},
"posts_per_page": 25
},
"demo": "https://ivanrobles.pro",
"description": "A ghost theme based on casper started theme",
"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",
"@tailwindcss/typography": "^0.5.9",
"bestzip": "^2.2.1",
"concurrently": "^8.2.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.0.0",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"prettier": "3.0.3",
"rollup": "^3.18.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.3.3"
},
"engines": {
"ghost": ">=5.0.0"
},
"gpm": {
"categories": [
"Minimal",
"Magazine"
],
"type": "theme"
},
"keywords": [
"sharmaz",
"theme",
"ghost-theme"
],
"license": "MIT",
"name": "the-sharmaz",
"repository": {
"type": "git",
"url": "https://github.com/Sharmaz/the-sharmaz.git"
},
"screenshots": {
"desktop": "assets/screenshot-desktop.jpg"
},
"scripts": {
"build": "rollup -c --environment BUILD:production && npx tailwindcss -i ./assets/css/index.css -o ./assets/built/index.css --minify",
"dev": "concurrently \"rollup -c --environment BUILD:development -w\" \"npx tailwindcss -i ./assets/css/index.css -o ./assets/built/index.css --watch\" ",
"pretest": "npm run build",
"test": "npx gscan .",
"zip": "npm run build && bestzip $npm_package_name.zip assets/* partials/* members/* *.hbs package.json"
},
"type": "module",
"version": "0.1.4"
}