-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.41 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@git-diff-view/file",
"description": "@git-diff-view/file",
"author": "MrWangJustToDo",
"license": "MIT",
"version": "0.0.20",
"main": "index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.js",
"index.d.ts"
],
"scripts": {
"gen:type": "dts-bundle-generator -o index.d.ts dist/types/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrWangJustToDo/git-diff-view.git",
"directory": "packages/file"
},
"homepage": "https://github.com/MrWangJustToDo/git-diff-view",
"exports": {
".": {
"require": "./index.js",
"types": "./index.d.ts",
"import": "./dist/esm/index.mjs"
},
"./package.json": "./package.json"
},
"buildOptions": {
"input": "./src/index.ts",
"output": [
{
"dir": "./dist",
"entryFileNames": "cjs/index.js",
"format": "cjs",
"type": true,
"multiple": true,
"sourcemap": true
},
{
"dir": "./dist",
"entryFileNames": "esm/index.mjs",
"format": "esm",
"sourcemap": true
}
]
},
"keywords": [
"diff",
"diff parse"
],
"dependencies": {
"@git-diff-view/core": "^0.0.20",
"diff": "^5.2.0",
"highlight.js": "^11.9.0",
"lowlight": "^3.1.0",
"fast-diff": "^1.3.0"
},
"devDependencies": {
"@types/diff": "^5.2.2",
"@types/hast": "^3.0.0"
}
}