forked from gsscsd/big_model_radar
-
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) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 815 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": "big-model-radar",
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@9.15.9",
"scripts": {
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"manifest": "tsx src/generate-manifest.ts",
"weekly": "tsx src/weekly.ts",
"monthly": "tsx src/monthly.ts",
"notify": "tsx src/notify.ts"
},
"dependencies": {
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"eslint": "^9",
"eslint-config-prettier": "^10",
"prettier": "^3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8"
}
}