-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "micro-transform",
"version": "0.3.3",
"description": "Tiny library to transform object values between different states; serializator and deserializator",
"scripts": {
"build": "vite build",
"check": "tsc --noEmit && vitest typecheck --run",
"test": "vitest",
"testrun": "vitest run"
},
"tags": [
"serialization",
"deserialization",
"serializer",
"typescript",
"typescript-serializer"
],
"author": "Dan Kozlov <[email protected]>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=18.0.0"
},
"directories": {
"lib": "dist"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dkzlv/micro-transform.git"
},
"bugs": {
"url": "https://github.com/dkzlv/micro-transform/issues"
},
"homepage": "https://github.com/dkzlv/micro-transform#readme",
"main": "./dist/micro-transform.umd.cjs",
"module": "./dist/micro-transform.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/micro-transform.js",
"require": "./dist/micro-transform.umd.cjs"
}
},
"devDependencies": {
"@evilmartians/lefthook": "^1.2.8",
"@rollup/plugin-strip": "^3.0.2",
"typescript": "^4.9.4",
"vite": "^3.0.4",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.26.2",
"zod": "^3.22.2"
}
}