-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "obj-serialize",
"version": "2.1.0",
"description": "Simple utility to serialize objects to be passed around to another context. Useful in Next.js Pages Router projects.",
"author": {
"name": "Igor Klepacki",
"email": "neg4n@icloud.com",
"url": "https://neg4n.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neg4n/obj-serialize"
},
"keywords": [
"nextjs",
"nextjs-plugin",
"next",
"serialization",
"json",
"objects",
"util"
],
"bugs": {
"url": "https://github.com/neg4n/obj-serialize/issues"
},
"homepage": "https://github.com/neg4n/obj-serialize/#readme",
"files": [
"README.md",
"dist"
],
"exports": {
".": {
"require": "./dist/serialize.js",
"import": "./dist/serialize.mjs"
},
"./predefined": {
"require": "./dist/predefined.js",
"import": "./dist/predefined.mjs"
}
},
"module": "./dist/serialize.mjs",
"main": "./dist/serialize.js",
"license": "MIT",
"scripts": {
"test": "pnpm jest --verbose",
"test:coverage": "pnpm jest --coverage",
"prepublishOnly": "pnpm run build",
"prebuild": "rimraf dist",
"build": "tsup src --dts --minify --format esm,cjs",
"build:watch": "pnpm run build --watch"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/node": "^18.7.18",
"jest": "^29.7.0",
"next": "^14.0.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"type-fest": "^4.10.2",
"typescript": "^4.8.3"
}
}