-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"name": "vite-plugin-generate-package-json",
"$schema": "https://raw.githubusercontent.com/vitejs/vite-plugin-registry/refs/heads/main/data/schema/extended-package-json.schema.json",
"version": "1.4.0",
"description": "Generate package.json file with packages from your Vite bundle",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node && tsc",
"clean": "rm -rf dist sample/build sample/dist sample/node_modules",
"lint": "biome check .",
"check": "biome check --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maccuaa/vite-plugin-generate-package-json.git"
},
"keywords": [
"vite",
"vite-plugin"
],
"author": "Andrew MacCuaig <andrewmaccuaig@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maccuaa/vite-plugin-generate-package-json/issues"
},
"homepage": "https://github.com/maccuaa/vite-plugin-generate-package-json#readme",
"files": [
"dist"
],
"compatiblePackages": {
"schemaVersion": 1,
"vite": {
"type": "compatible",
"versions": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"peerDependencies": {
"vite": "^8.0.5 ^8.0.5 ^8.0.5 ^8.0.5 ^8.0.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@tsconfig/node-lts": "24.0.0",
"@types/bun": "1.3.12",
"rolldown": "1.0.0-rc.16",
"typescript": "6.0.3",
"vite": "8.0.9"
}
}