-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "esbuild-plugin-dev-server",
"version": "4.1.6",
"description": "Dev server for esbuild with live reload and error overlay",
"keywords": [
"dev",
"server",
"esbuild",
"plugin",
"error",
"overlay",
"live",
"reload",
"react",
"typescript",
"express",
"electron"
],
"homepage": "/~https://github.com/kmalakoff/esbuild-plugin-dev-server#README.md",
"repository": {
"type": "git",
"url": "git+/~https://github.com/kmalakoff/esbuild-plugin-dev-server.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (/~https://github.com/kmalakoff)",
"main": "dist/cjs/index.cjs",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"assets",
"scripts"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"docs": "tsds docs",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds link && npx playwright test && tsds unlink",
"test:engines": "tsds link && nvu engines npx playwright test && tsds unlink",
"version": "tsds version"
},
"dependencies": {
"react-dev-utils": "^12.0.1",
"serve-handler": "^6.1.6",
"sockjs": "^0.3.24"
},
"devDependencies": {
"@playwright/test": "*",
"@types/mocha": "*",
"@types/node": "*",
"esbuild": "*",
"fs-extra": "*",
"http-terminator": "*",
"install-optional": "^0.1.28",
"react": "*",
"react-dom": "*",
"rimraf": "*"
},
"engines": {
"node": ">=16"
},
"tsds": {
"source": "src/index.mjs",
"targets": [
"cjs"
]
}
}