-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.5 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
{
"name": "@babbel/stylelint-config",
"version": "1.0.5",
"author": "Eric L. Goldstein <[email protected]>",
"description": "Hierarchical Stylelint configuration collection that intends to be simple to use, layered, and shared with others",
"keywords": [
"stylelint",
"stylelint-config"
],
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.11.0"
},
"packageManager": "[email protected]",
"exports": {
".": "./lib/stylelintBaseConfig.json",
"./css": "./lib/stylelintCssConfig.json",
"./css-modules": "./lib/stylelintCssModulesConfig.json",
"./scss": "./lib/stylelintScssConfig.json",
"./scss-modules": "./lib/stylelintScssModulesConfig.json",
"./styled-components": "./lib/stylelintStyledComponentsConfig.json"
},
"files": [
"lib/"
],
"scripts": {
"check:environment": "bun run --silent check:environment:symlinks && bun run --silent check:environment:versions",
"check:environment:symlinks": "check-environment-symlinks",
"check:environment:versions": "check-environment-versions",
"check:formatting": "prettier --check --no-editorconfig .",
"check:package-version": "check-package-version",
"delete:node-modules": "rm -rf node_modules",
"delete:package-lock": "rm -f bun.lockb",
"format:code": "prettier --write --no-editorconfig .",
"install:bun:expected-version": "bun --print '(await import(Bun.env.npm_package_json)).packageManager.split(\"@\")[1]' | (read BUN_VERSION; if [ $BUN_VERSION == `bun --version` ]; then echo Bun version $BUN_VERSION is already installed; else echo Installing Bun version $BUN_VERSION... && curl -fsSL https://bun.sh/install | bash -s \"bun-v$BUN_VERSION\"; fi)",
"reinstall": "bun run --silent delete:package-lock && bun run --silent delete:node-modules && bun install",
"reinstall:use-lock-file": "bun run --silent delete:node-modules && bun install --frozen-lockfile"
},
"dependencies": {
"postcss-styled-syntax": "0.7.0",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-high-performance-animation": "1.10.0",
"stylelint-no-unsupported-browser-features": "8.0.2",
"stylelint-order": "6.0.4",
"stylelint-suitcss": "5.0.0"
},
"devDependencies": {
"@mangs/bun-utils": "2.33.2",
"marked": "15.0.3",
"prettier": "3.4.1",
"stylelint": "16.11.0"
},
"peerDependencies": {
"stylelint": ">=16.0.0"
}
}