-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
41 lines (41 loc) · 1.46 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
{
"name": "black-highlighter",
"description": "Modern base theme for the SCP Wiki (build process)",
"version": "1.0.0",
"authors": "Woedenaz, Croquembouche",
"license": "CC-BY-SA-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Nu-SCPTheme/Black-Highlighter"
},
"engines": {
"bun": ">=1.0.17"
},
"devDependencies": {
"@csstools/postcss-global-data": "^3.0.0",
"autoprefixer": "^10.4.20",
"caniuse-lite": "^1.0.30001651",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lightningcss": "^1.26.0",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"postcss-csso": "^6.0.1",
"postcss-import": "^16.1.0",
"postcss-lightningcss": "^1.0.1",
"postcss-mixins": "^11.0.0",
"postcss-reporter": "^7.1.0",
"prettier": "^3.3.3",
"stylelint": "^16.8.2",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard": "^36.0.1",
"svgo": "^3.3.2"
},
"scripts": {
"build": "make",
"base": "cross-env postcss $bhl_i --config build/postcss.config.mjs -o $bhl_o -w --env $bhl_env --verbose",
"watch": "cross-env bhl_i=src/css/black-highlighter.css bhl_o=dist/css/black-highlighter.css bhl_env=development bun base & cross-env bhl_i=src/css/black-highlighter.css bhl_o=dist/css/min/black-highlighter.min.css bhl_env=production bun base & cross-env bhl_i=src/css/normalize.css bhl_o=dist/css/min/normalize.min.css bhl_env=development bun base"
}
}