-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
49
50
51
52
{
"name": "vite-plugin-handlebars",
"version": "2.0.0",
"description": "Vite plugin for Handlebars support in HTML",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist"
],
"repository": "[email protected]:alexlafroscia/vite-plugin-handlebars.git",
"author": "Alex LaFroscia <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "prettier --check .",
"test": "vitest",
"release": "standard-version",
"postinstall": "husky install",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"handlebars": "^4.7.6",
"vite": "^5.0.0"
},
"devDependencies": {
"@movable/prettier-config": "^0.3.6",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.10.6",
"file-fixture-factory": "^4.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"standard-version": "^9.1.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"lint-staged": {
"*.{js,ts,json,md,yml}": "prettier --write"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
},
"volta": {
"node": "20.10.0",
"yarn": "1.22.10"
},
"packageManager": "[email protected]"
}