-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.25 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
44
45
46
47
48
{
"name": "@yoichiro/vite-plugin-handlebars",
"version": "1.4.0",
"author": {
"name": "Yoichiro Tanaka",
"email": "[email protected]",
"url": "https://github.com/yoichiro"
},
"repository": "github:yoichiro/vite-plugin-handlebars",
"homepage": "https://github.com/yoichiro/vite-plugin-handlebars",
"bugs": {
"url": "https://github.com/yoichiro/vite-plugin-handlebars/issues"
},
"dependencies": {
"handlebars": "^4.7.8",
"vite": "^5.3.2"
},
"devDependencies": {
"@types/node": "^20.14.9",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"type-check": "tsc --noEmit",
"build": "tsc",
"prepare": "npm run build",
"test": "vitest",
"integration-dev": "npm run build && vite --config integration/vite.config.ts",
"integration-build": "npm run build && vite build --config integration/vite.config.ts",
"integration-preview": "npm run build && vite preview --config integration/vite.config.ts"
},
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"exports": "./dist/index.js",
"type": "module",
"keywords": [
"vite",
"vite-plugin",
"handlebars"
]
}