-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "cno-cli",
"version": "2.0.0",
"description": "Deno-compatible TypeScript runtime CLI on circu.js (cno binary)",
"main": "src/main.ts",
"type": "module",
"scripts": {
"type-check": "tsc --noEmit",
"bundle": "node scripts/bundle.mjs release",
"bundle:min": "node scripts/bundle.mjs min",
"configure": "cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCNO_RELEASE=ON",
"build": "pnpm run configure && cmake --build build --config Release --parallel",
"dev": "cts src/main.ts",
"mino": "deno run --allow-read --allow-write --allow-run --allow-ffi --allow-env mino/tools/mino.ts"
},
"keywords": [
"deno",
"cno",
"circu",
"quickjs",
"typescript",
"runtime"
],
"author": "iz",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"dependencies": {
"@cnojs/http": "workspace:./http",
"node-buffer": "npm:buffer@^6.0.3",
"ts-interface-checker": "^1.0.2"
},
"devDependencies": {
"@types/node": "^26.1.1",
"esbuild": "^0.28.0",
"typescript": "^6.0.3"
}
}