-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
40
41
{
"name": "ccmoddb",
"version": "1.0.0",
"description": "A build script for ccmoddb",
"scripts": {
"start": "tsx build/src/main.ts $BRANCH",
"startScratch": "tsx build/src/main.ts $BRANCH scratch",
"test": "npx tsx build/tests/run.ts",
"format": "prettier ./build/src -w"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/CCDirectLink/CCModDB.git"
},
"bugs": {
"url": "https://github.com/CCDirectLink/CCModDB/issues"
},
"homepage": "https://github.com/CCDirectLink/CCModDB#readme",
"devDependencies": {
"@octokit/types": "github:octokit/types.ts",
"@types/node": "^25.3.3",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/semver": "^7.7.1",
"chai": "^6.2.2",
"dotenv": "^17.3.1",
"mocha": "^11.3.0",
"semver": "^7.7.4",
"simple-git": "^3.32.3",
"tsx": "^4.21.0",
"yauzl": "^3.2.0"
}
}