-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1 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
{
"name": "bun-html-live-reload",
"description": "HTML live reload for Bun",
"version": "0.1.4",
"module": "index.ts",
"type": "module",
"author": "aabccd021",
"license": "MIT",
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aabccd021/bun-html-live-reload.git"
},
"keywords": [
"bun",
"html",
"web"
],
"bugs": {
"url": "https://github.com/aabccd021/bun-html-live-reload/issues"
},
"homepage": "https://github.com/aabccd021/bun-html-live-reload#readme",
"files": [
"index.ts"
],
"scripts": {
"start": "bun --hot example.ts",
"lint": "eslint . --ext ts"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.54.0",
"bun-types": "^0.7.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}