-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 983 Bytes
/
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
{
"name": "vite-plugin-proxy-page",
"version": "1.0.1",
"license": "MIT",
"author": "Alex MacArthur (https://macarthur.me)",
"homepage": "https://macarthur.me/posts/project-local-spa-onto-production-page",
"scripts": {
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"build": "rm -rf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module es2015 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"format": "prettier --write \"./**/*.{md,js,ts}\""
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"keywords": [
"vite-plugin",
"proxy",
"rewrite"
],
"devDependencies": {
"@types/jsdom": "^21.1.0",
"@types/prettier": "^2.7.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.1"
},
"dependencies": {
"axios": "^1.3.4",
"jsdom": "^21.1.0"
}
}