-
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) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 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": "sourcerer",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "turbo build",
"eval": "pnpm --filter @sourcerer/cli build && node apps/cli/dist/index.js eval --mock",
"test": "turbo test",
"lint": "turbo lint",
"dev": "turbo dev",
"typecheck": "turbo typecheck",
"clean": "turbo clean"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.15.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"prettier": "^3.5.3",
"turbo": "^2.8.20",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.4",
"vitest": "^3.2.1"
}
}