-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
112 lines (112 loc) · 2.67 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
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
{
"name": "@donedeal0/superdiff",
"version": "3.1.2",
"type": "module",
"description": "SuperDiff compares two arrays or objects and returns a full diff of their differences",
"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": [
"master"
],
"verifyConditions": [
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": true
}
]
]
},
"keywords": [
"data diff",
"comparison",
"comparison-tool",
"object-comparison",
"array-comparison",
"object-diff",
"objectdifference",
"object-difference",
"object",
"diff",
"deep-diff",
"json-diff",
"files diff",
"json",
"file",
"isobject",
"comparison",
"compare",
"stream",
"streaming",
"isequal",
"chunks"
],
"scripts": {
"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",
"transpile": "node scripts/transpile-node-worker.js",
"test": "npm run transpile && jest",
"tsc": "tsc --noEmit --incremental"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@swc/core": "^1.10.18",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"blob-polyfill": "^9.0.20240710",
"eslint": "^9.21.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.2",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"web-streams-polyfill": "^4.1.0"
}
}