-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "elysiajs-nuxt",
"version": "0.3.11",
"license": "MIT",
"author": "CHANG, TZU-YEN <[email protected]> (https://github.com/trylovetom)",
"homepage": "https://github.com/trylovetom/elysiajs-nuxt",
"repository": {
"type": "git",
"url": "https://github.com/trylovetom/elysiajs-nuxt.git"
},
"type": "module",
"exports": {
".": "./src/index.ts",
"./preset": "./src/preset/nitro.config.ts"
},
"module": "src/index.ts",
"scripts": {
"postinstall": "prettier-package-json --write package.json",
"tool:fmt": "prettier-package-json --write ./package.json && prettier '**/*' --write --ignore-unknown && eslint '**/*.{js,jsx,ts,tsx,vue}' --fix",
"tool:lint": "prettier '**/*' --check --ignore-unknown && eslint '**/*.{js,jsx,ts,tsx,vue}'"
},
"peerDependencies": {
"elysia": "^0.8.9",
"nuxt": "^3.9.3",
"typescript": "^5.3.3"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"elysia": "^0.8.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nitropack": "^2.8.1",
"nuxt": "^3.9.3",
"prettier": "^3.2.4",
"prettier-package-json": "^2.8.0",
"typescript": "^5.3.3"
},
"keywords": [
"bun",
"elysia",
"elysiajs",
"frontend",
"http",
"nuxt",
"nuxtjs",
"server",
"web"
]
}