-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 886 Bytes
/
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
{
"name": "@vituum/vite-plugin-juice",
"version": "1.3.0",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"tsc": "tsc",
"eslint": "eslint '**/*.js' --fix"
},
"dependencies": {
"vituum": "^1.1",
"juice": "^11",
"postcss": "^8.4",
"@csstools/postcss-global-data": "^3",
"postcss-custom-properties": "^14",
"postcss-html": "^1.7",
"parse5": "^7.1"
},
"devDependencies": {
"@types/node": "^22.5.0",
"vite": "^5.4.2",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"typescript": "^5.5.4"
},
"files": [
"index.js",
"types"
],
"exports": {
".": "./index.js",
"./types": "./types/*"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vituum/vite-plugin-juice.git"
}
}