-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1023 Bytes
/
package.json
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": "vscode-diff",
"version": "2.1.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.6",
"@types/mocha": "^9.1.1",
"assert": "^2.1.0",
"knip": "^2.25.2",
"mocha": "^9.2.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"scripts": {
"test": "mocha -u tdd --require ts-node/register src/**/test/**/*.ts",
"watch": "tsc --watch",
"build": "tsc --project tsconfig.build.json",
"knip": "knip",
"example": "yarn build && ts-node ./example/example.ts"
},
"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 <[email protected]>",
"license": "MIT"
}