-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.19 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.19 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
{
"name": "@vituum/vite-plugin-postcss",
"version": "2.0.1",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"description": "Vite plugin for PostCSS, adds basic plugins out of the box",
"keywords": [
"postcss",
"vituum",
"vite",
"vite-plugin"
],
"scripts": {
"lint": "npm run eslint && npm run tsc",
"tsc": "tsc",
"eslint": "eslint '**/*.js' --fix",
"publish-next": "npm publish --tag next"
},
"dependencies": {
"vituum": "^2.0",
"autoprefixer": "^10.4",
"postcss": "^8.5",
"postcss-import": "^16.1",
"postcss-nesting": "^14.0",
"postcss-custom-media": "^12.0"
},
"peerDependencies": {
"vite": "^8.0"
},
"devDependencies": {
"@eslint/js": "^10.0",
"@stylistic/eslint-plugin": "^5.10",
"@types/node": "^25.5",
"eslint": "^10.0",
"globals": "^17.4",
"typescript": "^5.9"
},
"files": [
"index.js",
"types"
],
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vituum/vite-plugin-postcss.git"
}
}