-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.12 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
49
50
51
52
53
{
"name": "json-decycle",
"version": "3.0.0",
"description": "(es6) stringify and parse cycled reference json",
"type": "module",
"files": [
"dist"
],
"main": "./dist/json-decycle.cjs",
"module": "./dist/json-decycle.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/json-decycle.cjs",
"require": "./dist/json-decycle.cjs"
}
},
"scripts": {
"build": "vite build",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YChebotaev/json-decycle.git"
},
"keywords": [
"json",
"decycle",
"cycle",
"stringify",
"parse",
"circular",
"reference",
"recursive",
"recursion"
],
"author": "YChebotaev",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/YChebotaev/json-decycle/issues"
},
"homepage": "https://github.com/YChebotaev/json-decycle#readme",
"engines": {
"node": ">= 16.13.2"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"typescript": "^4.9.4",
"vite": "^4.0.1",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.25.7"
}
}