-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.78 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.78 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
70
71
72
73
74
75
76
77
{
"name": "@elysiajs/eden",
"version": "1.4.8",
"description": "Fully type-safe Elysia client",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./treaty": {
"types": "./dist/treaty/index.d.ts",
"import": "./dist/treaty.mjs",
"require": "./dist/treaty.js"
},
"./treaty2": {
"types": "./dist/treaty2/index.d.ts",
"import": "./dist/treaty2.mjs",
"require": "./dist/treaty2.js"
},
"./fetch": {
"types": "./dist/fetch/index.d.ts",
"import": "./dist/fetch.mjs",
"require": "./dist/fetch.js"
}
},
"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.4.19"
},
"devDependencies": {
"@elysiajs/cors": "1.3.3",
"@types/bun": "^1.2.20",
"@types/node": "^24.3.0",
"elysia": "^1.4.23",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"expect-type": "^1.2.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite": "^7.1.3"
},
"prettier": {
"semi": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none"
}
}