-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "@webxdc/vite-plugins",
"description": "Collection of vite plugins for webxdc development",
"version": "1.5.1",
"license": "MIT",
"author": "adbenitez",
"keywords": [
"webxdc",
"deltachat"
],
"repository": {
"type": "git",
"url": "https://github.com/webxdc/vite-plugins.git"
},
"bugs": {
"url": "https://github.com/webxdc/vite-plugins/issues"
},
"homepage": "https://github.com/webxdc/vite-plugins",
"main": "./src/index.js",
"module": "./src/index.js",
"source": "./src/index.js",
"type": "module",
"exports": {
".": {
"import": "./src/index.js"
},
"./emulator": {
"import": "./src/webxdc.js"
}
},
"scripts": {
"fix": "prettier --write .",
"check": "prettier --check . && tsc --noEmit --allowJs --lib es2017,dom ./src/webxdc.js"
},
"dependencies": {
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-legacy": "^6.0.0",
"eruda": "^3.4.1",
"terser": "^5.36.0",
"vite-plugin-zip-pack": "^1.2.4"
},
"devDependencies": {
"@webxdc/types": "latest",
"prettier": "latest",
"typescript": "latest",
"vite": "latest"
}
}