forked from richardtallent/vite-plugin-singlefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.21 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
50
51
52
53
54
{
"name": "vite-plugin-singlefile",
"version": "0.1.1",
"description": "Vite plugin for inlining JavaScript and CSS resources",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rimraf dist && tsc -w --p tsconfig.json",
"build": "rimraf dist && tsc -p tsconfig.json",
"prepublishOnly": "npm build"
},
"keywords": [
"vite",
"inline",
"css",
"SFA",
"single-file"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/richardtallent/vite-plugin-singlefile"
},
"bugs": {
"url": "https://github.com/richardtallent/vite-plugin-singlefile/issues"
},
"homepage": "https://github.com/richardtallent/vite-plugin-singlefile/tree/main/#readme",
"dependencies": {
"@rollup/plugin-node-resolve": "^11.1.0",
"esbuild": "^0.8.33",
"rollup": "^2.37.1",
"rollup-plugin-esbuild": "^2.6.1"
},
"peerDependencies": {
"vite": ">=2.0.0-beta.3"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.0.3",
"vite": "^2.0.0-beta.35"
},
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5",
"printWidth": 180
}
}