-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "serve-then",
"type": "module",
"version": "1.0.0",
"description": "After the server starts successfully, then you can ...",
"author": "KID-joker <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/KID-joker/serve-then#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KID-joker/serve-then.git"
},
"bugs": "https://github.com/KID-joker/serve-then/issues",
"keywords": [
"server",
"start",
"test",
"wait"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint . --fix",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@kid-joker/live-server": "^1.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.1",
"@types/node": "^18.11.19",
"bumpp": "^8.2.1",
"eslint": "^8.33.0",
"typescript": "^4.9.5",
"unbuild": "^1.1.1"
}
}