-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
{
"name": "vite-plugin-globby-import",
"version": "1.0.0-rc.2",
"description": "A simple globby-import plugin of vite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16.0"
},
"author": "xueyan.lu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/luxueyan/vite-plugin-globbyImport.git"
},
"bugs": {
"url": "https://github.com/luxueyan/vite-plugin-globbyImport/issues"
},
"scripts": {
"build": "rm -rf dist && tsc -p src",
"lint": "prettier --write --parser typescript \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "./scripts/release.sh"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@types/glob": "^7.1.3",
"conventional-changelog-cli": "^2.0.34",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"standard-version": "^8.0.2",
"typescript": "^3.9.7",
"vite": "^1.0.0-rc.4",
"yorkie": "^2.0.0"
},
"dependencies": {}
}