-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.5 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.5 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
62
63
64
65
66
67
68
69
{
"name": "trpc-transformer",
"version": "3.2.2",
"description": "Simple tRPC transformer based on superjson with Decimal.js support",
"repository": "icflorescu/trpc-transformer",
"bugs": {
"url": "https://github.com/icflorescu/trpc-transformer/issues"
},
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && NODE_NO_WARNINGS=1 node build.mjs && tsc --emitDeclarationOnly",
"test": "tsc --noEmit"
},
"keywords": [
"trpc",
"rpc",
"transformer",
"transform",
"superjson",
"json",
"decimal.js",
"utilities",
"typescript",
"serializer"
],
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/icflorescu"
},
"license": "ISC",
"dependencies": {
"decimal.js": "^10.4.3",
"superjson": "^2.2.1"
},
"peerDependencies": {
"decimal.js": "^10.4.3",
"superjson": "^2.2.1"
},
"devDependencies": {
"esbuild": "^0.20.2",
"typescript": "^5.4.5"
}
}