-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "@workleap/postcss-configs",
"author": "Workleap",
"description": "Workleap's recommended PostCSS configurations",
"version": "1.1.10",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/workleap/wl-web-configs.git",
"directory": "packages/postcss-configs"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"src",
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "rslib build -c rslib.config.ts",
"eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsgo",
"test": "vitest --config vitest.config.ts --no-watch"
},
"peerDependencies": {
"postcss": "^8.5.14"
},
"dependencies": {
"postcss-load-config": "^6.0.1",
"postcss-preset-env": "^11.3.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@rslib/core": "0.21.5",
"@types/node": "25.9.0",
"@typescript-eslint/parser": "8.59.4",
"@typescript/native-preview": "7.0.0-dev.20260519.1",
"@workleap/eslint-configs": "workspace:*",
"@workleap/rslib-configs": "workspace:*",
"@workleap/typescript-configs": "workspace:*",
"eslint": "9.39.2",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4",
"vitest": "4.1.6"
}
}