-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
{
"name": "type-explorer",
"description": "A runtime type analysis tool with support for multiple schema adapters",
"version": "0.1.4",
"license": "MIT",
"author": "Mohamed Achaq <hi@achaq.dev>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"provenance": true,
"repository": {
"type": "git",
"url": "https://github.com/triyanox/type-explorer.git"
},
"exports": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm --external bun",
"build": "bun run build-fast --dts-resolve",
"release": "bumpp --commit --push --tag && npm publish",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"bun",
"typescript",
"type-explorer",
"type-analysis",
"runtime-type-analysis",
"runtime-type-explorer"
],
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.7.2",
"zod": "^3.23.8",
"yup": "^1.5.0",
"joi": "^17.13.3",
"axios": "^1.7.9",
"express": "^4.21.2",
"swagger-ui-express": "^5.0.0",
"@types/express": "^4.17.21",
"@types/swagger-ui-express": "^4.1.6",
"@types/bun": "^1.1.14",
"bumpp": "^9.4.1",
"tsup": "^8.1.0"
},
"peerDependencies": {
"zod": "^3.22.4",
"typescript": "^5.7.2",
"yup": "^1.3.3",
"joi": "^17.11.0"
}
}