-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 768 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
{
"name": "codecrafters-git-clone",
"version": "1.0.0",
"description": "",
"main": "./app/main.ts",
"scripts": {
"build": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-strip-types node ./app/main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"cat-file": "npm run start -- cat-file 14225c42a03630c8528007ea24fca972b9a37f8d"
},
"private": true,
"type": "module",
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/node": "^22.13.9",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"commander": "^13.1.0"
}
}