forked from dfoverdx/htmldiff-js
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@ali-tas/htmldiff-js",
"type": "module",
"version": "2.0.1",
"packageManager": "[email protected]",
"description": "JavaScript port of HtmlDiff.Net which is itself a C# port of HtmlDiff",
"author": "Ali Tas",
"license": "ISC",
"homepage": "https://github.com/alitas/htmldiff-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alitas/htmldiff-js.git"
},
"bugs": {
"url": "https://github.com/alitas/htmldiff-js/issues"
},
"keywords": [
"HtmlDiff",
"Html",
"Diff",
"Diff Algorithm",
"Diff Structured File"
],
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup",
"test": "vitest",
"cover": "vitest --coverage",
"check": "biome check . && tsc",
"prepublishOnly": "pnpm test run && pnpm build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/strictest": "^2.0.5",
"@vitest/coverage-v8": "^2.1.4",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}