-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.51 KB
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": "sema-code-cli",
"version": "0.1.0",
"type": "module",
"description": "Sema Code CLI — an AI coding assistant for the terminal",
"bin": {
"sema-code": "./bin/sema-code"
},
"scripts": {
"dev": "tsx src/index.ts",
"dev:debug": "DEV=true tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"compile": "bun build ./src/index.ts --compile --outfile dist/sema-code --external turndown",
"compile:all": "bun build ./src/index.ts --compile --outfile dist/sema-code-macos-arm64 --target=bun-darwin-arm64 --external turndown && bun build ./src/index.ts --compile --outfile dist/sema-code-macos-x64 --target=bun-darwin-x64 --external turndown && bun build ./src/index.ts --compile --outfile dist/sema-code-linux-x64 --target=bun-linux-x64 --external turndown && bun build ./src/index.ts --compile --outfile dist/sema-code-windows-x64 --target=bun-windows-x64 --external turndown",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"chalk": "^5.3.0",
"ink": "^7.1.0",
"marked": "^15.0.0",
"react": "^19.2.7",
"sema-core": "^2.0.9"
},
"devDependencies": {
"@types/react": "^19.2.17",
"prettier": "^3.8.4",
"react-devtools-core": "^7.0.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"files": [
"dist",
"bin",
"scripts",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.20.0",
"license": "MIT"
}