-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "json-codemod",
"version": "2.0.0",
"private": false,
"description": "A utility to patch the JSON string and preserve the original formatting, including comments and whitespace.",
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"exports": {
"./package.json": {
"import": "./package.json",
"require": "./package.json"
},
".": {
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/cjs/index.d.cts"
},
"import": {
"default": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.mts"
}
}
},
"scripts": {
"test": "node --test **/*.test.js",
"test:update-snapshots": "node --test-update-snapshots --test **/*.test.js",
"build": "knip && rslib build",
"prepack": "npm run build"
},
"author": "Axetroy <axetroy.dev@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@rslib/core": "^0.18.0",
"@types/node": "^22.14.1",
"knip": "^5.53.0",
"typescript": "^5.9.3"
},
"keywords": [
"json",
"jsoncst",
"json patch",
"json formatter",
"json with comments",
"jsonc",
"json5"
],
"homepage": "https://github.com/axetroy/jsoncst#readme",
"bugs": {
"url": "https://github.com/axetroy/jsoncst/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axetroy/jsoncst.git"
},
"dependencies": {}
}