-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
103 lines (103 loc) · 2.36 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
99
100
101
102
103
{
"name": "unplugin-glob",
"version": "0.3.3",
"packageManager": "[email protected]",
"description": "Imports or exports files using glob match for ES Module.",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/sxzz/unplugin-glob#readme",
"bugs": {
"url": "https://github.com/sxzz/unplugin-glob/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/unplugin-glob.git"
},
"author": "三咲智子 <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"require": "./dist/esbuild.js",
"import": "./dist/esbuild.mjs"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"test": "vitest",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.3",
"fast-glob": "^3.3.2",
"magic-string": "^0.30.12",
"pkg-exports": "^0.2.0",
"unplugin": "^2.0.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^4.4.0",
"@sxzz/prettier-config": "^2.0.2",
"@types/node": "^22.8.1",
"bumpp": "^9.7.1",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-esbuild": "^6.1.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=16.14.0"
},
"prettier": "@sxzz/prettier-config"
}