forked from larowlan/vite-plugin-twig-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 KB
/
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
{
"name": "twig-processor",
"version": "1.0.0",
"description": "Provides a ⚡️ Vite plugin to transform 🌱 Twig into HTML with a 💧 Drupal flavour",
"types": "./src/index.d.ts",
"keywords": [
"Vite",
"Vite plugin",
"Twig",
"Storybook",
"Drupal"
],
"author": "larowlan <[email protected]>",
"license": "GPL-2.0-or-later",
"main": "./src/index.js",
"type": "module",
"scripts": {
"build": "rm -rf dist && vite build",
"format": "prettier --write \"{test,src}/**/*.js\"",
"lint": "prettier --check \"{test,src}/**/*.js\"",
"test": "vitest run",
"pretest": "npm run-script build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/larowlan/vite-plugin-twig-drupal.git"
},
"dependencies": {
"drupal-attribute": "^1.0.2",
"drupal-twig-extensions": "^1.0.0-beta.5",
"twig": "^1.16.0"
},
"peerDependencies": {
"vite": "^4.4.11 || ^5"
},
"devDependencies": {
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"vite": "^4.4.11 || ^ 5",
"vitest": "^0.34.6"
}
}