-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.78 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.78 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
45
{
"name": "north",
"version": "0.1.0",
"type": "module",
"bin": {
"north": "./dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"build:binary": "bun build src/index.ts --compile --outfile north",
"build:binary:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile north-linux-x64",
"build:binary:mac-arm": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile north-darwin-arm64",
"build:binary:mac-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile north-darwin-x64",
"build:binary:all": "bun run build:binary:linux && bun run build:binary:mac-arm && bun run build:binary:mac-x64",
"typecheck": "tsc --noEmit",
"link": "bun link",
"prepare": "git config core.hooksPath .githooks",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"test": "bun test",
"check": "bun run typecheck && bun run lint && bun run format:check"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"ink": "^5.1.0",
"react": "^18.3.1",
"string-width": "^8.1.0",
"wrap-ansi": "^9.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bun": "^1.1.14",
"@types/react": "^18.3.14",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"react-devtools-core": "^7.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}