-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 960 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
43
44
45
46
47
{
"name": "@vituum/vite-plugin-latte",
"version": "1.2.1",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"tsc": "tsc",
"eslint": "eslint '**/*.js' --fix",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"vituum": "^1.1",
"fast-glob": "^3.3",
"lodash": "^4.17",
"minimatch": "^9.0"
},
"devDependencies": {
"@types/node": "^20.9.1",
"vite": "^5.0.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"typescript": "^5.2.2"
},
"files": [
"index.js",
"handler.js",
"handler-single.js",
"index.php",
"latte",
"vendor",
"types"
],
"exports": {
".": "./index.js",
"./types": "./types/*"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lubomirblazekcz/vite-plugin-latte.git"
}
}