-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.06 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
{
"name": "object-compare-2",
"version": "0.0.1",
"description": "A TypeScript utility for comparing objects and detecting changes",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:clean && npm run build:cjs && npm run build:esm",
"build:clean": "rimraf dist",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"object",
"compare",
"deep-compare",
"object-compare",
"diff"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Yaya12085/object-compare.git"
},
"author": "Yaya Mohamed",
"bugs": {
"url": "https://github.com/Yaya12085/object-compare/issues"
},
"license": "ISC",
"homepage": "https://github.com/Yaya12085/object-compare#readme",
"devDependencies": {
"@types/node": "^20.14.2",
"rimraf": "^5.0.0",
"typescript": "^5.4.5"
}
}