-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "vite-plugin-raw-assets",
"version": "0.3.0",
"description": "Vite plugin to load assets as strings",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsc --noEmit && vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yellowspot/vite-plugin-raw-assets.git"
},
"keywords": [
"vite",
"plugin",
"assets",
"raw-loader"
],
"author": "matias@yellowspot.dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/yellowspot/vite-plugin-raw-assets/issues"
},
"homepage": "https://github.com/yellowspot/vite-plugin-raw-assets#readme",
"engines": {
"node": ">= 18.x"
},
"peerDependencies": {
"vite": "^3.1.0 || 4.x || 5.x"
},
"devDependencies": {
"@types/node": "^20.11.19",
"typescript": "^5.3.3",
"vite": "^5.1.3"
}
}