-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "vite-plugin-run",
"version": "0.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/innocenzi/vite-plugin-run"
},
"author": "Enzo Innocenzi",
"files": [
"dist",
"*.d.ts"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"packageManager": "[email protected]",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "https://github.com/innocenzi/vite-plugin-run#readme",
"bugs": "https://github.com/innocenzi/vite-plugin-run/issues",
"scripts": {
"prepare": "npm run build",
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"lint": "eslint src/*.ts",
"release": "bumpp --push --tag --commit \"release: v\""
},
"dependencies": {
"@antfu/utils": "^0.7.10",
"debug": "^4.3.7",
"execa": "5.1.1",
"minimatch": "^9.0.5",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@innocenzi/eslint-config": "^0.22.4",
"@types/debug": "^4.1.12",
"@types/node": "^18.19.50",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vite": "^5.4.5",
"vitest": "^2.1.1"
},
"pnpm": {
"overrides": {
"execa": "5.1.0"
}
}
}