-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 889 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 889 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
33
34
35
36
37
38
39
{
"name": "@pendle-ai/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.x"
},
"scripts": {
"build": "turbo run build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "turbo run typecheck",
"eval": "turbo run eval",
"validate": "turbo run validate"
},
"private": true,
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^22.0.0",
"dotenv": "^16.4.7",
"promptfoo": "^0.121.2",
"swagger-typescript-api": "^13.6.5",
"tsx": "^4.20.6",
"turbo": "^2.5.0",
"typescript": "5.9.3"
},
"workspaces": [
"packages/*",
"packages/plugins/*",
"evals/suites/*"
],
"overrides": {
"esbuild": "^0.25.0"
},
"packageManager": "yarn@4.13.0"
}