forked from jhmaster2000/bun-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 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
{
"type": "module",
"name": "bun-repl",
"version": "2.0.7",
"description": "Experimental REPL for Bun",
"main": "src/module/repl.ts",
"scripts": {
"start": "bun run src/cli.ts",
"test": "bun run --silent check && bun run --silent start",
"deeptest": "bun run --silent lint && bun run --silent test",
"check": "bun tsc",
"lint": "bun eslint src/**/*.ts",
"lint-fix": "bun run --silent lint -- --fix"
},
"author": "jhmaster",
"license": "MIT",
"homepage": "https://github.com/jhmaster2000/bun-repl#readme",
"bugs": {
"url": "https://github.com/jhmaster2000/bun-repl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jhmaster2000/bun-repl.git"
},
"keywords": ["bun", "repl", "cli", "ts", "js"],
"dependencies": {
"@babel/core": "^7.22.0",
"@babel/preset-typescript": "^7.22.0",
"@babel/types": "^7.22.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"bun-devtools": "^0.0.2",
"bun-types": "^1.0.1",
"eslint": "^8.44.0",
"eslint-plugin-unicorn": "^48.0.1",
"typescript": "^5.1.6"
},
"bin": {
"bun-repl": "./src/cli.ts"
}
}