-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "s4d",
"version": "0.2.0",
"description": "Minimal web development server with live reload",
"keywords": [
"local",
"development",
"server"
],
"author": "Morris Brodersen <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/morris/s4d",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/s4d.git"
},
"bugs": {
"url": "https://github.com/morris/s4d/issues"
},
"type": "module",
"engines": {
"node": ">=20"
},
"exports": "./dist/index.js",
"bin": {
"s4d": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"test": "playwright test",
"dev": "tsc --project tsconfig.build.json && node dist/bin.js test/fixture"
},
"dependencies": {
"mime": "^4.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@playwright/test": "^1.44.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.30",
"@types/ws": "^8.5.10",
"eslint": "^9.9.0",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.2.0"
}
}