-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "vite-plugin-dir2json",
"version": "1.3.0",
"description": "Convert the directory structure into json data containing specific file paths",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"files": [
"*.d.ts",
"dist",
"*.md"
],
"scripts": {
"build": "tsup",
"dev": "pnpm build && pnpm -F vite-vue-demo dev",
"debug": "pnpm build && pnpm -F vite-vue-demo debug",
"test": "vitest",
"publishNpm": "pnpm build && npm publish"
},
"keywords": [
"vite",
"vite-plugin",
"dir2json",
"simple",
"json"
],
"author": "buddywang",
"repository": {
"type": "git",
"url": "git+https://github.com/buddywang/vite-plugin-dir2json.git"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^20.12.11",
"chokidar": "^4.0.0",
"local-pkg": "^0.5.0",
"tsup": "^8.0.2",
"vite-plugin-inspect": "^0.8.4",
"vitest": "^2.0.2"
},
"peerDependencies": {
"vite": ">=2.x"
}
}