-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 932 Bytes
/
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
{
"name": "vite-plugin-git-commit-hash",
"version": "1.0.7",
"description": "a vite plugin that gets the latest git commit hash",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Mocha--/vite-plugin-git-commit-hash"
},
"homepage": "https://github.com/Mocha--/vite-plugin-git-commit-hash",
"scripts": {
"prebuild": "pnpm install",
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm build"
},
"keywords": [
"vite",
"git",
"commit-hash"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"author": "XIBO WANG <xibowangmelb@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.19",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.1.3"
},
"peerDependencies": {
"vite": ">=3"
}
}