forked from liam-fitzgerald/vite-plugin-urbit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@urbit/vite-plugin-urbit",
"version": "0.8.0",
"description": "A plugin to setup proxying from a vite devserver to an Urbit ship",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/liam-fitzgerald/vite-plugin-urbit.git"
},
"files": [
"dist",
"node_modules",
"package.json",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build"
},
"author": "Tlon Corporation",
"keywords": [
"vite-plugin"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.0",
"esbuild": "^0.13.2",
"typescript": "^4.4.3",
"vite": "^2.6.5"
},
"bugs": {
"url": "https://github.com/liam-fitzgerald/vite-plugin-urbit/issues"
},
"homepage": "https://github.com/liam-fitzgerald/vite-plugin-urbit#readme",
"dependencies": {
"vite-plugin-html-config": "^1.0.6",
"vite-plugin-rewrite-all": "^0.1.2"
}
}