-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 KB
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
{
"name": "@async/miniweb",
"version": "0.0.0",
"type": "module",
"description": "A tiny web-stack simulator for static-hosted demos and Node-side integration tests.",
"license": "MIT",
"bin": {
"miniweb": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"./edge": {
"types": "./dist/edge/index.d.ts",
"default": "./dist/edge/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build && tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"happy-dom": "20.9.0",
"typescript": "6.0.3",
"vite": "8.0.13",
"vitest": "4.1.6"
}
}