-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "unplugin-deploy-info",
"type": "module",
"version": "0.0.3",
"description": "print some help info like vite builtin",
"author": "Elone Hoo <hi@elonehoo.me>",
"license": "MIT",
"homepage": "https://github.com/elonehoo/unplugin-deploy-info#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/elonehoo/unplugin-deploy-info.git"
},
"bugs": {
"url": "https://github.com/elonehoo/unplugin-deploy-info/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"transform"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"import": "./dist/nuxt.js",
"require": "./dist/nuxt.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"build:fix": "tsx scripts/postbuild.ts",
"play:vite": "pnpm -C playground/vite run dev",
"play:nuxt": "pnpm -C playground/nuxt run dev",
"prepublishOnly": "npm run build",
"release": "bumpp package.json --commit --push --tag && pnpm -r publish --access public",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"kolorist": "^1.8.0",
"unplugin": "^1.16.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.10.0",
"@types/node": "^22.10.0",
"@vitest/ui": "^2.1.6",
"bumpp": "^9.8.1",
"chalk": "^5.3.0",
"eslint": "^9.15.0",
"fast-glob": "^3.3.2",
"rollup": "^4.27.4",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.6",
"webpack": "^5.96.1"
}
}