Skip to content

Commit d582350

Browse files
committed
chore(config): update package metadata 🔧
- Add keywords array to package.json - Remove deno task check from build script - Update descriptions in config files
1 parent fba7213 commit d582350

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neabyte/fast-router",
3-
"description": "An optimized, versatile router with radix tree structure for Deno/Node.js",
3+
"description": "A fast, versatile router with radix tree structure for JavaScript",
44
"version": "0.1.0",
55
"type": "module",
66
"license": "MIT",

package.json

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@neabyte/fast-router",
33
"version": "0.1.0",
4-
"description": "An optimized, versatile router with radix tree structure for Deno/Node.js",
4+
"description": "A fast, versatile router with radix tree structure for JavaScript",
55
"type": "module",
66
"main": "dist/index.cjs",
77
"module": "dist/index.mjs",
@@ -14,11 +14,43 @@
1414
}
1515
},
1616
"scripts": {
17-
"build": "deno task check && unbuild --minify",
17+
"build": "unbuild --minify",
1818
"clean": "rm -rf dist",
1919
"prepublishOnly": "rm -rf dist && npm run build"
2020
},
21-
"keywords": [],
21+
"keywords": [
22+
"api",
23+
"api-router",
24+
"deno",
25+
"express",
26+
"fast",
27+
"framework",
28+
"http",
29+
"http-router",
30+
"javascript",
31+
"lightweight",
32+
"minimal",
33+
"middleware",
34+
"named-parameters",
35+
"nodejs",
36+
"optimized",
37+
"path-matching",
38+
"performance",
39+
"radix-tree",
40+
"regex-validation",
41+
"request-router",
42+
"rest-api",
43+
"route-handler",
44+
"router",
45+
"routing",
46+
"tree",
47+
"trie",
48+
"typescript",
49+
"url-pattern",
50+
"url-router",
51+
"web-framework",
52+
"wildcard-routing"
53+
],
2254
"devDependencies": {
2355
"unbuild": "^3.6.1"
2456
},

0 commit comments

Comments
 (0)