-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 875 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 875 Bytes
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
{
"name": "calculus",
"type": "module",
"private": true,
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --minify",
"dev": "bun run src/index.ts",
"format": "syncpack format && eslint . --fix",
"lint": "eslint .",
"start": "bun run build && bun run dist/index.js",
"test": "bun test",
"typecheck": "tsc --noEmit --skipLibCheck --project ."
},
"peerDependencies": {
"typescript": "latest"
},
"dependencies": {
"@effect/ai": "latest",
"@effect/ai-openai": "latest",
"@effect/cli": "latest",
"@effect/platform": "latest",
"@effect/platform-bun": "latest",
"effect": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@effect/eslint-plugin": "latest",
"@effect/language-service": "latest",
"@types/bun": "latest",
"syncpack": "latest"
}
}