-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
97 lines (97 loc) · 2.93 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@elysiajs/html",
"version": "1.1.1",
"description": "Plugin for Elysia that add support for returning html",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./dist/cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
},
"./h": {
"types": "./dist/h.d.ts",
"import": "./dist/h.mjs",
"require": "./dist/cjs/h.js"
},
"./handler": {
"types": "./dist/handler.d.ts",
"import": "./dist/handler.mjs",
"require": "./dist/cjs/handler.js"
},
"./hotwire": {
"types": "./dist/hotwire.d.ts",
"import": "./dist/hotwire.mjs",
"require": "./dist/cjs/hotwire.js"
},
"./html": {
"types": "./dist/html.d.ts",
"import": "./dist/html.mjs",
"require": "./dist/cjs/html.js"
},
"./htmx": {
"types": "./dist/htmx.d.ts",
"import": "./dist/htmx.mjs",
"require": "./dist/cjs/htmx.js"
},
"./options": {
"types": "./dist/options.d.ts",
"import": "./dist/options.mjs",
"require": "./dist/cjs/options.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.mjs",
"require": "./dist/cjs/utils.js"
}
},
"keywords": [
"elysia",
"html"
],
"homepage": "https://github.com/elysiajs/elysia-html",
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elysia-html"
},
"bugs": "https://github.com/elysiajs/elysia-html/issues",
"license": "MIT",
"scripts": {
"dev": "bun run --watch example/index.tsx",
"test": "bun test && npm run test:node",
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
"build": "bun build.ts",
"release": "npm run build && npm run test && npm publish --access public",
"format": "prettier --write ."
},
"peerDependencies": {
"elysia": ">= 1.1.0"
},
"devDependencies": {
"@types/bun": "1.1.6",
"elysia": ">= 1.1.0-rc.2",
"eslint": "9.6.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@kitajs/html": "^4.1.0",
"@kitajs/ts-html-plugin": "^4.0.1"
},
"peerDependenciesMeta": {
"@kitajs/html": {
"optional": true
},
"@kitajs/ts-html-plugin": {
"optional": true
}
}
}