vite-plugin-glob-input 0.0.1 → 0.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +57 -58
package/package.json
CHANGED
@@ -1,58 +1,57 @@
|
|
1
|
-
{
|
2
|
-
"name": "vite-plugin-glob-input",
|
3
|
-
"version": "0.0.
|
4
|
-
"description": "Vite plugin to add files to build.rollupOptions.input using fast-glob",
|
5
|
-
"author": "ozekimasaki",
|
6
|
-
"license": "MIT",
|
7
|
-
"homepage": "https://github.com/ozekimasaki/vite-plugin-glob-input#readme",
|
8
|
-
"repository": {
|
9
|
-
"type": "git",
|
10
|
-
"url": "https://github.com/ozekimasaki/vite-plugin-glob-input.git"
|
11
|
-
},
|
12
|
-
"bugs": {
|
13
|
-
"url": "https://github.com/ozekimasaki/vite-plugin-glob-input/issues"
|
14
|
-
},
|
15
|
-
"keywords": [
|
16
|
-
"vite",
|
17
|
-
"vite-plugin",
|
18
|
-
"static",
|
19
|
-
"glob"
|
20
|
-
],
|
21
|
-
"files": [
|
22
|
-
"dist"
|
23
|
-
],
|
24
|
-
"type": "module",
|
25
|
-
"main": "./dist/index.js",
|
26
|
-
"types": "./dist/index.d.ts",
|
27
|
-
"exports": {
|
28
|
-
".": {
|
29
|
-
"import": "./dist/index.js",
|
30
|
-
"types": "./dist/index.d.ts"
|
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
|
-
}
|
1
|
+
{
|
2
|
+
"name": "vite-plugin-glob-input",
|
3
|
+
"version": "0.1.0-beta.0",
|
4
|
+
"description": "Vite plugin to add files to build.rollupOptions.input using fast-glob",
|
5
|
+
"author": "ozekimasaki",
|
6
|
+
"license": "MIT",
|
7
|
+
"homepage": "https://github.com/ozekimasaki/vite-plugin-glob-input#readme",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "https://github.com/ozekimasaki/vite-plugin-glob-input.git"
|
11
|
+
},
|
12
|
+
"bugs": {
|
13
|
+
"url": "https://github.com/ozekimasaki/vite-plugin-glob-input/issues"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"vite",
|
17
|
+
"vite-plugin",
|
18
|
+
"static",
|
19
|
+
"glob"
|
20
|
+
],
|
21
|
+
"files": [
|
22
|
+
"dist"
|
23
|
+
],
|
24
|
+
"type": "module",
|
25
|
+
"main": "./dist/index.js",
|
26
|
+
"types": "./dist/index.d.ts",
|
27
|
+
"exports": {
|
28
|
+
".": {
|
29
|
+
"import": "./dist/index.js",
|
30
|
+
"types": "./dist/index.d.ts"
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"dependencies": {
|
34
|
+
"fast-glob": "^3.3.2"
|
35
|
+
},
|
36
|
+
"peerDependencies": {
|
37
|
+
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
38
|
+
},
|
39
|
+
"devDependencies": {
|
40
|
+
"vite": "^7.0.0-beta.0",
|
41
|
+
"vitest": "^3.2.1",
|
42
|
+
"@vitest/coverage-v8": "^3.2.1",
|
43
|
+
"typescript": "^5.7.2",
|
44
|
+
"rimraf": "^6.0.1",
|
45
|
+
"fs-extra": "^11.2.0",
|
46
|
+
"@types/fs-extra": "^11.0.4",
|
47
|
+
"@types/node": "^22.10.2"
|
48
|
+
},
|
49
|
+
"scripts": {
|
50
|
+
"clean": "rimraf ./dist",
|
51
|
+
"type-check": "tsc --noEmit -p .",
|
52
|
+
"test": "vitest run",
|
53
|
+
"coverage": "vitest run --coverage",
|
54
|
+
"tsc": "tsc -p .",
|
55
|
+
"build": "pnpm clean && pnpm tsc"
|
56
|
+
}
|
57
|
+
}
|