-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.55 KB
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
{
"name": "@miyaoka/vite-plugin-commit-info",
"type": "module",
"version": "0.0.1",
"description": "Vite plugin to provide commit info as a virtual module",
"author": "miyaoka",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miyaoka/vite-plugin-commit-info.git"
},
"bugs": "https://github.com/miyaoka/vite-plugin-commit-info/issues",
"keywords": [
"vite",
"vite-plugin",
"commit",
"git",
"version",
"build-info"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./client": {
"types": "./dist/client.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown -w",
"lint": "eslint .",
"typecheck": "tsgo",
"test": "vitest",
"test:run": "vitest --run",
"prepublishOnly": "pnpm build",
"release": "bumpp"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "9.1.0",
"@types/node": "24.13.2",
"@typescript/native-preview": "7.0.0-dev.20260704.1",
"bumpp": "11.1.0",
"eslint": "10.6.0",
"eslint-plugin-format": "2.0.1",
"lefthook": "2.1.9",
"tsdown": "0.22.3",
"typescript": "6.0.3",
"vite": "8.1.3",
"vitest": "4.1.9"
}
}