-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@chubbyts/chubbyts-decode-encode",
"type": "module",
"version": "2.5.1",
"description": "A simple decode/encode solution for json / jsonx / url-encoded / xml / yaml.",
"keywords": [
"chubbyts",
"decode",
"encode",
"json",
"jsonx",
"url-encoded",
"xml",
"yaml"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/chubbyts-decode-encode",
"scripts": {
"build": "rm -Rf dist && tsc",
"cs-fix": "prettier --write src tests",
"cs": "prettier --check src tests",
"infection": "stryker run",
"lint-fix": "oxlint --fix src tests vitest.config.ts",
"lint": "oxlint src tests vitest.config.ts",
"prepare": "pnpm run build",
"test": "vitest"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"exports": {
"./dist": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./dist/decoder": {
"types": "./dist/decoder/index.d.ts",
"import": "./dist/decoder/index.js",
"default": "./dist/decoder/index.js"
},
"./dist/encoder": {
"types": "./dist/encoder/index.d.ts",
"import": "./dist/encoder/index.js",
"default": "./dist/encoder/index.js"
},
"./*": {
"types": "./*.d.ts",
"import": "./*.js",
"default": "./*.js"
}
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@chubbyts/chubbyts-dic-config-factory": "^1.0.0",
"@chubbyts/chubbyts-dic-types": "^2.3.0",
"@chubbyts/chubbyts-throwable-to-error": "^2.3.0",
"fast-xml-builder": "^1.3.0",
"fast-xml-parser": "^5.10.1",
"qs": "^6.15.3",
"yaml": "^2.9.0"
},
"devDependencies": {
"@chubbyts/chubbyts-dic-config": "^2.3.0",
"@chubbyts/chubbyts-function-mock": "^2.3.0",
"@chubbyts/chubbyts-oxlint": "^1.0.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^26.1.2",
"@types/qs": "^6.15.1",
"@vitest/coverage-v8": "^4.1.10",
"oxlint": "^1.76.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@11.18.0+sha512.33d83c77da82f49fba836925c6f1b841181ec3132b670639bd012f7075f5c7cf634c5f870147c19aae7478fac01df09d8892e880454896edd23ee9b33757563c"
}