-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "@rogonion/js-json",
"private": false,
"description": "A library for manipulating dynamic, JSON-like data structures in JavaScript. It provides tools for traversing, modifying, validating, and converting deeply nested objects (maps, sets, arrays, classes) using JSONPath.",
"version": "1.0.3",
"type": "module",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"sideEffects": false,
"author": "Declan Joseph",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc --project tsconfig.build.json && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"release": "npm publish --access public",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/rogonion/js-json.git"
},
"readme": "https://github.com/rogonion/js-json#README.md",
"keywords": [
"json",
"object",
"manipulation",
"utility"
],
"devDependencies": {
"@types/node": "^25.3.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"dependencies": {
"yaml": "^2.8.2"
}
}