-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 975 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 975 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
{
"name": "algow",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"build": "bun build src/index.ts --compile --outfile algow",
"test": "bun run scripts/test-integration.ts",
"lint": "oxlint --type-aware --type-check --ignore-pattern 'playground/*' --ignore-pattern 'editors/*'",
"format": "oxfmt --write",
"lsp": "bun run src/lsp/index.ts",
"playground:build": "bun build playground/worker.ts --outdir=playground --target=browser && bun build playground/main.ts --outdir=playground --target=browser",
"playground:serve": "bun run playground/server.ts"
},
"dependencies": {
"commander": "^14.0.2",
"terser": "^5.44.1",
"vscode-languageserver-types": "^3.17.5"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"oxlint-tsgolint": "^0.11.0",
"simple-git-hooks": "^2.13.1"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}