-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.39 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-multi-device",
"version": "1.0.1",
"description": "Vite plugin for build application for multiple devices",
"bin": {
"vmd": "bin/vmd.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Sasan Farrokh",
"license": "MIT",
"repository": {
"url": "https://github.com/SasanFarrokh/vite-plugin-multi-device.git"
},
"bugs": {
"url": "https://github.com/SasanFarrokh/vite-plugin-multi-device/issues"
},
"homepage": "https://github.com/SasanFarrokh/vite-plugin-multi-device/tree/master/#readme",
"scripts": {
"dev": "tsup src/index.ts --external fsevents,express,vite --watch",
"build": "tsup src/index.ts --external debug --external fsevents --dts",
"lint": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"debug": "^4.3.1",
"eslint": "^7.17.0",
"jest": "^26.4.1",
"rollup": "^2.52.7",
"standard-version": "^9.1.0",
"tsup": "^3.6.1",
"typescript": "^4.1.3",
"vite": "^2.3.8"
},
"dependencies": {
"express": "^4.17.1"
},
"peerDependencies": {
"vite": "2.x.x"
}
}