-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.04 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
{
"name": "hakk",
"version": "0.0.28-alpha",
"description": "Interactive programming for Node.js. Speed up your JavaScript development!",
"main": "index.js",
"scripts": {
"test": "npx jest"
},
"author": "Arthur Edelstein",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-transform-class-static-block": "^7.24.4",
"husky": "^9.0.11",
"minimist": "^1.2.7",
"queueable": "^5.3.1",
"ws": "^8.13.0"
},
"bin": {
"hakk": "bin.js"
},
"devDependencies": {
"@types/jest": "^29.2.5"
},
"semistandard": {
"ignore": [
"/playground/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthuredelstein/hakk.git"
},
"keywords": [
"hmr",
"repl",
"hot swap",
"hot load",
"hot reload",
"live"
],
"files": [
"bin.js",
"errors.js",
"evaluator.js",
"html.js",
"index.js",
"LICENSE",
"modules.js",
"package.json",
"README.md",
"repl.js",
"transform.js",
"utils.js"
]
}