-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
{
"name": "morphia",
"description": "A powerful library designed for transforming complex JSON structures into compact, index-based arrays and back. Ideal for efficient data serialization and deserialization, Morphia simplifies the handling of nested and dynamic data by flattening JSON objects into arrays and reconstructing them with precision.",
"private": false,
"version": "1.0.4",
"type": "module",
"author": "Hoodgail Benjamin <hoodgail@proton.me> (https://github.com/Hoodgail)",
"scripts": {
"build": "tsc && vite build",
"test": "bun test"
},
"emitDeclarationOnly": true,
"declaration": true,
"main": "./dist/main.umd.js",
"module": "./dist/main.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/main.es.js",
"require": "./dist/main.umd.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hoodgail/morphia.git"
},
"bugs": {
"url": "https://github.com/Hoodgail/morphia/issues"
},
"homepage": "https://github.com/Hoodgail/morphia",
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"keywords": [
"json",
"array",
"flatten",
"morphia",
"serialization",
"deserialization",
"data-optimization",
"performance",
"optimization"
],
"devDependencies": {
"@types/bun": "^1.1.6",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-dts": "^4.0.0-beta.2"
}
}