-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 2.96 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 2.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@donedeal0/superdiff",
"version": "4.2.2",
"type": "module",
"description": "Superdiff provides a rich and readable diff for arrays, objects, texts and coordinates. It supports stream and file inputs for handling large datasets efficiently, is battle-tested, has zero dependencies, and offers a top-tier performance.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"declaration": true,
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./client": "./dist/client.js",
"./server": "./dist/server.cjs"
},
"author": "DoneDeal0",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/DoneDeal0/superdiff"
},
"bugs": {
"url": "https://github.com/DoneDeal0/superdiff/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/DoneDeal0"
},
"readme": "./README.md",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": true
}
]
]
},
"keywords": [
"array-comparison",
"array-diff",
"chunks",
"code-diff",
"compare",
"comparison-tool",
"coordinates",
"data-diff",
"deep-comparison",
"deep-diff",
"deep-object-diff",
"diff",
"file-diff",
"geo-diff",
"geo-distance",
"haversine",
"isequal",
"json-diff",
"json",
"lat-long",
"lcs",
"list-diff",
"object-comparison",
"object-diff",
"object-difference",
"object",
"stream-diff",
"streaming-diff",
"streaming",
"string-diff",
"text-diff",
"textdiff",
"vincenty",
"word-diff"
],
"scripts": {
"benchmark": "tsx benchmark/index.ts",
"build": "tsup",
"format": "npx prettier . --write",
"lint:dead-code": "npx -p typescript@latest -p knip knip",
"lint": "eslint --cache --max-warnings=0 --fix",
"prepare": "husky",
"test": "npm run transpile && jest",
"transpile": "node scripts/transpile-node-worker.js",
"tsc": "tsc --noEmit --incremental"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.15.8",
"@swc/jest": "^0.2.39",
"@types/arr-diff": "^4.0.3",
"@types/deep-diff": "^1.0.5",
"@types/jest": "^29.5.14",
"arr-diff": "^4.0.0",
"blob-polyfill": "^9.0.20240710",
"deep-diff": "^1.0.2",
"deep-object-diff": "^1.1.9",
"diff": "^8.0.2",
"eslint": "^9.21.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.0.0",
"microdiff": "^1.5.0",
"prettier": "^3.5.2",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"web-streams-polyfill": "^4.2.0"
}
}