-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 942 Bytes
/
package.json
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
{
"name": "mjai-batch-review",
"version": "1.0.0",
"main": "built/index.js",
"type": "module",
"scripts": {
"clean": "rm -rf built",
"build": "npm run clean && tsc",
"start": "npm run build && node built/index.js",
"lint": "npx oxlint@latest",
"format": "prettier --write src/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Xerxes-2",
"license": "MIT",
"description": "Dump, review and analyse one's MajSoul logs at one command",
"repository": "github:Xerxes-2/mjai-batch-review",
"devDependencies": {
"@types/node": "^22.5.2",
"@types/plotly.js": "^2.33.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3"
},
"dependencies": {
"dayjs": "^1.11.13",
"open": "^10.1.0",
"tensoul": "github:Equim-chan/tensoul"
}
}