-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "@urbit/vite-plugin-urbit",
"version": "1.0.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/urbit/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": "Urbit Foundation",
"keywords": [
"urbit",
"vite-plugin"
],
"license": "MIT",
"devDependencies": {
"@types/connect-history-api-fallback": "^1.5.4",
"@types/express-serve-static-core": "^4.19.5",
"@types/node": "^18.15.11",
"esbuild": "^0.13.2",
"typescript": "^4.4.3",
"vite": "^4.2.1"
},
"bugs": {
"url": "https://github.com/urbit/vite-plugin-urbit/issues"
},
"homepage": "https://github.com/urbit/vite-plugin-urbit#readme",
"dependencies": {
"connect-history-api-fallback": "^1.6.0"
}
}