-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1008 Bytes
/
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
{
"name": "@bloque/differ",
"type": "module",
"version": "1.1.5",
"description": "wraps objects and arrays and keeps track of global changes around wrapped objects",
"main": "./dist/cjs/src/index.js",
"scripts": {
"test": "node --loader ts-node/esm test/index.ts",
"build": "tsc -p . && tsc -p tsconfig.cjs.json",
"prepack": "npm run build"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/src/index.d.ts",
"default": "./dist/esm/src/index.js"
},
"require": {
"types": "./dist/cjs/src/index.d.ts",
"default": "./dist/cjs/src/index.js"
}
}
},
"keywords": [
"diff-resolution"
],
"author": "Pablo Dorado <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/clone-deep": "^4.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"clone-deep": "^4.0.1",
"crypto-digest-sync": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}