-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "vite-transform-globby-import",
"version": "1.0.0-rc.7",
"description": "A simple globby-import transform of vite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16.0"
},
"author": "xueyan.lu",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luxueyan/vite-transform-globby-import.git"
},
"bugs": {
"url": "https://github.com/luxueyan/vite-transform-globby-import/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",
"commit": "git-cz",
"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",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"cz-customizable": "^6.3.0",
"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": {}
}