-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.78 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
{
"type": "commonjs",
"name": "@workleap/stylelint-configs",
"author": "Workleap",
"description": "Workleap recommended Stylelint configurations.",
"version": "2.1.8",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"src",
"dist",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/workleap/wl-web-configs.git",
"directory": "packages/stylelint-configs"
},
"scripts": {
"prebuild": "pnpm rimraf dist",
"build": "tsc --project tsconfig.build.json",
"eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsgo"
},
"peerDependencies": {
"prettier": "^3.8.1",
"stylelint": "^16.26.1"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
},
"stylelint": {
"optional": true
}
},
"dependencies": {
"stylelint-config-standard": "^39.0.1",
"stylelint-prettier": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "25.5.0",
"@typescript-eslint/parser": "8.58.0",
"@typescript/native-preview": "7.0.0-dev.20260331.1",
"@workleap/eslint-configs": "workspace:*",
"@workleap/typescript-configs": "workspace:*",
"eslint": "9.39.2",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"stylelint": "16.26.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
}
}