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.
Files changed (1) hide show
  1. package/package.json +57 -58
package/package.json CHANGED
@@ -1,58 +1,57 @@
1
- {
2
- "name": "vite-plugin-glob-input",
3
- "version": "0.0.1",
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
- "scripts": {
34
- "clean": "rimraf ./dist",
35
- "type-check": "tsc --noEmit -p .",
36
- "test": "vitest run",
37
- "coverage": "vitest run --coverage",
38
- "tsc": "tsc -p .",
39
- "build": "pnpm clean && pnpm tsc",
40
- "prepublishOnly": "pnpm coverage && pnpm build"
41
- },
42
- "dependencies": {
43
- "fast-glob": "^3.3.2"
44
- },
45
- "peerDependencies": {
46
- "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
47
- },
48
- "devDependencies": {
49
- "vite": "^7.0.0-beta.0",
50
- "vitest": "^3.2.1",
51
- "@vitest/coverage-v8": "^3.2.1",
52
- "typescript": "^5.7.2",
53
- "rimraf": "^6.0.1",
54
- "fs-extra": "^11.2.0",
55
- "@types/fs-extra": "^11.0.4",
56
- "@types/node": "^22.10.2"
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
+ }