forked from chocolatey/choco-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.42 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.42 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
{
"name": "choco-theme",
"packageManager": "yarn@4.13.0",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/chocolatey/choco-theme.git"
},
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"cssnano": "^7.1.4",
"postcss": "^8.5.9",
"sass": "^1.99.0",
"stylelint": "^16.26.1",
"stylelint-config-twbs-bootstrap": "^16.1.0"
},
"scripts": {
"audit": "yarn npm audit --all --recursive --no-deprecations",
"build": "yarn build-clean \"$@\" dist && yarn build-js \"$@\" && yarn build-sass \"$@\" && yarn build-partials \"$@\" && yarn build-assets \"$@\" && yarn build-clean \"$@\" temp",
"build-assets": "npx tsx build/build-assets.ts",
"build-clean": "npx tsx build/build-clean.ts",
"build-js": "npx tsx build/build-js.ts",
"build-partials": "npx tsx build/build-partials.ts",
"build-sass": "npx tsx build/build-sass.ts",
"eslint": "npx eslint --max-warnings 0",
"stylelint": "stylelint \"src/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"publish-dry-run": "yarn workspaces foreach --all --no-private npm publish --tolerate-republish --dry-run --access public",
"update-version": "yarn workspaces foreach --since version"
}
}