-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.62 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@untypeable/logsnag",
"version": "1.0.2",
"description": "Untypeable router type definitions & validators for the LogSnag API",
"publishConfig": {
"access": "public"
},
"repository": {
"directory": "packages/logsnag",
"type": "git",
"url": "https://github.com/nurodev/untypeable.git"
},
"homepage": "https://logsnag.com",
"bugs": "https://github.com/nurodev/untypeable/issues",
"readme": "README.md",
"author": {
"name": "nurodev",
"email": "[email protected]",
"url": "https://nuro.dev"
},
"keywords": [
"api",
"logsnag",
"typescript",
"untypeable"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index",
"./package.json": "./package.json",
"./runtime-safe": "./dist/runtime-safe",
"./types": "./dist/types",
"./zod": "./dist/zod"
},
"typesVersions": {
"*": {
"runtime-safe": [
"./dist/runtime-safe.d.ts"
],
"types": [
"./dist/types.d.ts"
],
"zod": [
"./dist/zod.d.ts"
]
}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run"
},
"dependencies": {
"untypeable": "^0.2.1"
},
"devDependencies": {
"@types/node": "^20.11.20",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"undici": "^6.6.2",
"zod": "^3.23.4"
},
"peerDependencies": {
"zod": "^3.23.4"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
}
}