-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "ccmoddb",
"version": "1.0.0",
"description": "A build script for ccmoddb",
"scripts": {
"start": "bun build/src/main.ts $BRANCH",
"startScratch": "bun build/src/main.ts $BRANCH scratch",
"test": "bun test",
"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.5.0",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@types/bun": "^1.3.11",
"eslint": "^10.1.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@types/semver": "^7.7.1",
"dotenv": "^17.4.0",
"semver": "^7.7.4",
"simple-git": "^3.33.0",
"yauzl": "^3.3.0",
"bun": "^1.3.11"
}
}