-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.12 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
{
"type": "module",
"name": "bun-repl",
"version": "2.1.1",
"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": {
"@swc/core": "^1.3.90"
},
"devDependencies": {
"@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"
}
}