-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 783 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 783 Bytes
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
{
"name": "@vituum/vite-plugin-twig",
"version": "1.1.0",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"tsc": "tsc",
"eslint": "eslint '**/*.js' --fix"
},
"dependencies": {
"vituum": "^1.1",
"twig": "^1.17",
"lodash": "^4.17"
},
"devDependencies": {
"@types/node": "^20.9.1",
"@types/twig": "^1.12.15",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0"
},
"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-twig.git"
}
}