-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "structured-clone-es",
"type": "module",
"version": "2.0.0",
"packageManager": "pnpm@10.32.1",
"description": "An env-agnostic serializer and deserializer with recursion ability and types beyond JSON, based on the HTML structured clone algorithm.",
"author": "Andrea Giammarchi",
"license": "ISC",
"homepage": "https://github.com/antfu-collective/structured-clone-es#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu-collective/structured-clone-es.git"
},
"bugs": "https://github.com/antfu-collective/structured-clone-es/issues",
"keywords": [
"structured-clone",
"serialize",
"deserialize"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp",
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.2",
"@antfu/ni": "^28.3.0",
"@antfu/utils": "^9.3.0",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "3.2.4",
"bumpp": "^10.4.1",
"eslint": "^10.0.3",
"lint-staged": "^16.3.3",
"pnpm": "^10.32.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.21.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}