-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 977 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 977 Bytes
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
{
"name": "vite-plugin-base64",
"version": "0.2.0",
"description": "Create base64 data URLs from static files",
"keywords": [],
"author": "knd775",
"repository": "github:knd775/vite-plugin-base64",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"types"
],
"scripts": {
"dev": "tsup-node --sourcemap --watch src",
"build": "tsup-node --dts",
"test": "vitest --run"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"file-type": "^21.0.0"
},
"peerDependencies": {
"vite": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.15.24",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4"
}
}