-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "sdfclone",
"version": "1.0.3",
"description": "World fastest deep clone based on schema",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Morglod/sdfclone.git"
},
"bugs": {
"url": "https://github.com/Morglod/sdfclone/issues"
},
"homepage": "https://github.com/Morglod/sdfclone#readme",
"keywords": [
"deep-clone",
"deepclone",
"deep-copy",
"deepcopy",
"fast",
"performance",
"performant",
"fastclone",
"fastcopy",
"fast-clone",
"fast-deep-clone",
"fast-copy",
"fast-deep-copy",
"typescript"
],
"author": "morglod",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"benchmark": "2.1",
"fastest-json-copy": "^1.0.1",
"lodash": "^4.17.21",
"rfdc": "^1.3.0",
"tap": "^18.6.1",
"typescript": "^5.0.0"
},
"scripts": {
"test": "tap test",
"build": "tsc",
"bench": "bun run ./src/bench.ts"
},
"dependencies": {}
}