-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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": "zxel",
"version": "0.0.6",
"description": "Interactive terminal shell for JavaScript runtimes with syntax highlight and zx utilities",
"repository": {
"type": "git",
"url": "git+https://github.com/eliot-akira/zxel.git"
},
"homepage": "https://github.com/eliot-akira/zxel#readme",
"type": "module",
"main": "index.js",
"bin": {
"zxel": "run"
},
"files": [
"build",
"license",
"readme.md",
"run"
],
"scripts": {
"start": "NODE_ENV=development bun --hot run index.ts",
"debug": "tail -f debug.txt",
"build": "mkdir -p build && npm run clean && npm run format && npm run build:esm && npm run build:cjs",
"build:cjs": "bun build.ts cjs",
"build:esm": "bun build.ts esm",
"clean": "rm -rf build/cjs/* && rm -rf build/esm/* && rm -rf build/web/*",
"format": "prettier --no-config --no-semi --single-quote --write index.ts",
"release": "npm run build && npm publish --access public"
},
"keywords": ["zx", "bun", "shell"],
"author": "eliot-akira",
"license": "MIT",
"dependencies": {
"emphasize": "^7.0.0",
"terminal-kit": "^3.1.1",
"zx": "^8.0.2"
},
"devDependencies": {
"@gjsify/esbuild-plugin-transform-ext": "^0.0.4",
"esbuild": "^0.20.2",
"prettier": "^3.2.5"
}
}