-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "vite-plugin-version-mark",
"version": "0.1.4",
"description": "Automatically insert the version or git_commit_sha in your Vite/Nuxt project.",
"keywords": [
"vite",
"version",
"vue",
"nuxt",
"react",
"git",
"commit",
"log",
"plugin",
"vite-plugin"
],
"author": "ZhongxuYang <himatthew@foxmail.com>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/vite/index.js",
"require": "./dist/vite/index.cjs"
},
"./nuxt": {
"import": "./dist/nuxt/index.js",
"require": "./dist/nuxt/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZhongxuYang/vite-plugin-version-mark.git"
},
"homepage": "https://github.com/ZhongxuYang/vite-plugin-version-mark.git",
"main": "./dist/vite/index.cjs",
"module": "./dist/vite/index.js",
"types": "./dist/vite/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"lint": "eslint --max-warnings=0 --fix .",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@nuxt/kit": "^3.14.0",
"@nuxt/schema": "^3.14.0",
"@types/node": "^22.10.0",
"eslint": "9.x",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.9",
"nuxt": "^3.14.0",
"rollup": "^4.18.1",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vitest": "^2.1.6"
},
"peerDependencies": {
"vite": "*"
}
}