-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
50
51
52
53
54
55
56
57
{
"name": "worker-webserver",
"version": "0.2.1",
"description": "web server in browser service worker",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"bin": {
"worker-webserver": "bin/cli.js"
},
"files": [
"dist",
"public",
"LICENSE.md",
"README.md"
],
"scripts": {
"prepublishOnly": "npm run build && np --no-cleanup --yolo --no-publish --any-branch",
"dev": "vite",
"build": "tsup",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"authors": [
],
"repository": {
"type": "git",
"url": "git+https://github.com/lulusir/worker-webserver.git"
},
"dependencies": {
"commander": "^10.0.1"
},
"devDependencies": {
"@anatine/zod-mock": "^3.11.0",
"@faker-js/faker": "^7.6.0",
"@lujs/middleware": "^0.0.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.31.1",
"zod": "^3.21.4"
}
}