Skip to content

Commit b446aba

Browse files
committed
🎉 feat: refactor
1 parent 5ba8618 commit b446aba

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

bun.lock

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
"workspaces": {
44
"": {
55
"name": "@elysiajs/static",
6-
"dependencies": {
7-
"node-cache": "^5.1.2",
8-
},
96
"devDependencies": {
107
"@types/bun": "^1.3.0",
118
"@types/fast-decode-uri-component": "^1.0.0",
@@ -223,8 +220,6 @@
223220

224221
"chokidar": ["[email protected]", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="],
225222

226-
"clone": ["[email protected]", "", {}, "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w=="],
227-
228223
"color-convert": ["[email protected]", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
229224

230225
"color-name": ["[email protected]", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
@@ -391,8 +386,6 @@
391386

392387
"natural-compare": ["[email protected]", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="],
393388

394-
"node-cache": ["[email protected]", "", { "dependencies": { "clone": "2.x" } }, "sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg=="],
395-
396389
"object-assign": ["[email protected]", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="],
397390

398391
"openapi-types": ["[email protected]", "", {}, "sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw=="],

package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,18 @@
1818
"types": "./dist/index.d.ts",
1919
"import": "./dist/index.mjs",
2020
"require": "./dist/cjs/index.js"
21+
},
22+
"./utils": {
23+
"types": "./dist/utils.d.ts",
24+
"import": "./dist/utils.mjs",
25+
"require": "./dist/cjs/utils.js"
26+
},
27+
"./types": {
28+
"types": "./dist/types.d.ts",
29+
"import": "./dist/types.mjs",
30+
"require": "./dist/cjs/types.js"
2131
}
2232
},
23-
"dependencies": {
24-
"node-cache": "^5.1.2"
25-
},
2633
"devDependencies": {
2734
"@types/bun": "^1.3.0",
2835
"@types/fast-decode-uri-component": "^1.0.0",

0 commit comments

Comments
 (0)