-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
42
43
{
"name": "vscode-diff",
"version": "3.0.1",
"description": "Diff utility used in the Visual Studio Code source.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/assert": "^1.5.11",
"@types/mocha": "^10.0.10",
"assert": "^2.1.0",
"eslint": "^9.39.1",
"knip": "^5.67.1",
"mocha": "^11.7.5",
"remove-unused-vars": "^0.0.9",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"scripts": {
"test": "mocha -u tdd --require tsx/cjs src/**/test/**/*.ts",
"watch": "tsc --watch",
"build": "tsc --project tsconfig.build.json",
"knip": "knip",
"cleanup": "eslint --quiet -f json | remove-unused-vars",
"example": "npm run build && tsx ./example/example.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"diff",
"compare"
],
"repository": {
"type": "git",
"url": "https://github.com/micnil/vscode-diff.git"
},
"bugs": {
"url": "https://github.com/micnil/vscode-diff/issues"
},
"homepage": "https://github.com/micnil/vscode-diff",
"author": "Michael Nilsson <michael@nilsson.dev>",
"license": "MIT"
}