-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 754 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 754 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
{
"name": "tokscale-monorepo",
"version": "1.0.0",
"private": true,
"description": "Token Usage Leaderboard - The Kardashev Scale for AI Devs",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cargo build --release -p tokscale-cli && bun run build:cli",
"build:cli": "bun run --cwd packages/cli build",
"build:core": "cargo build --release -p tokscale-cli",
"cli": "./scripts/cli.sh",
"dev:frontend": "bun run --cwd packages/frontend dev",
"dev:benchmarks": "bun run --cwd packages/benchmarks run",
"test:launchers": "bash scripts/test-package-launchers.sh"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}