-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 814 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 814 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
33
34
35
{
"name": "askdiff-monorepo",
"private": true,
"version": "0.0.0",
"description": "Treat your AI as a coworker — ask questions about its changes in a diff viewer.",
"license": "MIT",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsx scripts/build.ts"
},
"pnpm": {
"overrides": {
"prismjs": "^1.30.0"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"tsx": "^4.21.0",
"typescript-eslint": "^8.59.0"
}
}