-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.37 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
{
"name": "crearts-obsidian-theme",
"version": "0.0.2",
"author": "corellan",
"description": "CreArts is a customizable Obsidian theme that changes the appearance of Obsidian.",
"license": "MIT <license>",
"private": true,
"devDependencies": {
"fs-extra": "^11.1.1",
"merge-files": "^0.1.2",
"pnpm": "^8.7.6",
"prettier": "^3.0.3",
"prettier-plugin-css-order": "^2.0.0",
"sass": "^1.68.0",
"stylelint": "^15.10.3",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-scss": "^5.2.1"
},
"scripts": {
"watch": "sass --no-source-map --watch src/scss/index.scss theme.css --style compressed",
"lint": "stylelint \"**/src/scss/**/*.scss\"",
"format": "prettier --write \"**/src/scss/**/*.{scss,css}\"",
"convert": "node scripts/convert.js",
"skins": "node scripts/skins.js",
"merge": "node scripts/merge.js",
"version": "node scripts/version.js",
"compile": "sass --no-source-map src/scss/index.scss src/css/main.css",
"compile:min": "sass --no-source-map src/scss/index.scss src/css/main.min.css --style compressed",
"build": "pnpm run version && pnpm run compile:min && pnpm run skins && pnpm run merge",
"release": "pnpm run version && pnpm run compile && pnpm run compile:min && pnpm run skins && pnpm run merge"
},
"prettier": {
"plugins": [
"prettier-plugin-css-order"
],
"cssDeclarationSorterOrder": "smacss",
"printWidth": 124,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "always",
"proseWrap": "always"
},
"stylelint": {
"plugins": [
"stylelint-scss"
],
"extends": [
"stylelint-config-recommended-scss"
],
"rules": {
"indentation": null,
"string-quotes": null,
"at-rule-empty-line-before": null,
"block-closing-brace-empty-line-before": null,
"declaration-block-semicolon-newline-after": null,
"declaration-empty-line-before": null,
"selector-list-comma-newline-after": null,
"value-list-comma-newline-after": null,
"no-missing-end-of-source-newline": null,
"no-empty-source": null,
"no-eol-whitespace": null,
"max-empty-lines": null,
"max-line-length": null
}
}
}