-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
85 lines (85 loc) · 2.18 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
81
82
83
84
85
{
"name": "@elysiajs/eden",
"version": "1.1.3",
"description": "Fully type-safe Elysia client",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "[email protected]"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"node": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./treaty": {
"require": "./dist/treaty.js",
"import": "./dist/treaty.mjs",
"node": "./dist/treaty.js",
"default": "./dist/treaty.js",
"types": "./dist/treaty/index.d.ts"
},
"./treaty2": {
"require": "./dist/2.js",
"import": "./dist/treaty2.mjs",
"node": "./dist/treaty2.js",
"default": "./dist/treaty2.js",
"types": "./dist/treaty2/index.d.ts"
},
"./fetch": {
"require": "./dist/fetch.js",
"import": "./dist/fetch.mjs",
"node": "./dist/fetch.js",
"default": "./dist/fetch.js",
"types": "./dist/fetch/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"keywords": [
"elysia",
"eden",
"connector"
],
"homepage": "https://github.com/elysiajs/eden",
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/eden"
},
"bugs": "https://github.com/elysiajs/eden/issues",
"license": "MIT",
"scripts": {
"dev": "bun run --watch example/index.ts",
"test": "bun test && bun test:types",
"test:types": "tsc --project tsconfig.test.json",
"build": "rimraf dist && tsup",
"release": "npm run build && npm run test && npm publish --access public"
},
"peerDependencies": {
"elysia": ">= 1.1.0"
},
"devDependencies": {
"@elysiajs/cors": "0.7.0",
"@types/bun": "^1.0.3",
"@types/node": "^18.15.5",
"elysia": ">= 1.1.0",
"esbuild": "^0.19.3",
"eslint": "^8.26.0",
"expect-type": "^0.17.3",
"rimraf": "^4.4.1",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^5.3.3"
},
"prettier": {
"semi": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none"
}
}