fast-deep-copy-ts/package.json
2022-12-02 10:23:04 +08:00

27 lines
640 B
JSON

{
"name": "fast-deep-copy-ts",
"version": "1.0.0",
"description": "20 lines code! Deep copy the given object considering circular structure",
"main": "dist/deep-copy.js",
"types": "dist/deep-copy.d.ts",
"keywords": [
"fast-deep-copy",
"deep-copy",
"deepcopy"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc"
},
"author": "625335512@qq.com",
"homepage": "https://github.com/zhaolihang/fast-deep-copy",
"repository": {
"type": "git",
"url": "git+https://github.com/zhaolihang/fast-deep-copy.git"
},
"license": "ISC",
"devDependencies": {
"typescript": "^4.9.3"
}
}