-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
77 lines (77 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "vite-plugin-html-template",
"version": "1.2.2",
"description": "html template for vite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "indexxuan@gmail.com",
"scripts": {
"commit": "git cz",
"build": "tsup src/index.ts --dts",
"lint": "prettier --write --parser typescript \"src/**/*.ts\"",
"test": "echo missing test",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"homepage": "https://github.com/IndexXuan/vite-plugin-html-template",
"repository": {
"type": "git",
"url": "git@github.com:IndexXuan/vite-plugin-html-template.git"
},
"keywords": [
"vite-plugin",
"html",
"html-template",
"virtual-html"
],
"dependencies": {
"shelljs": "0.8.4"
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/shelljs": "0.8.8",
"lint-staged": "10.5.4",
"lodash": "^4.17.21",
"prettier": "2.2.1",
"tsup": "3.12.1",
"typescript": "4.1.3",
"vite": "2.8.4",
"@commitlint/cli": "7.2.0",
"@commitlint/config-conventional": "7.1.2",
"commitizen": "2.10.1",
"cz-customizable": "5.2.0",
"yorkie": "2.0.0"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-configrc.js"
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"**/**.{ts,js,json}": [
"prettier --write"
]
}
}