@arikajs/dispatcher 0.0.7 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -12
package/package.json
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arikajs/dispatcher",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Request dispatching and handler execution layer of the ArikaJS framework.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "tsc -p tsconfig.json",
|
|
10
|
-
"clean": "rm -rf dist",
|
|
11
|
-
"prepare": "echo skip",
|
|
12
|
-
"test": "npx tsx tests/Dispatcher.test.ts",
|
|
13
|
-
"test:watch": "npx tsx --watch tests/Dispatcher.test.ts",
|
|
14
|
-
"dev": "tsc -p tsconfig.json --watch"
|
|
15
|
-
},
|
|
16
8
|
"files": [
|
|
17
9
|
"dist"
|
|
18
10
|
],
|
|
@@ -37,11 +29,18 @@
|
|
|
37
29
|
},
|
|
38
30
|
"homepage": "https://github.com/ArikaJs/arikajs/tree/main/packages/dispatcher#readme",
|
|
39
31
|
"dependencies": {
|
|
40
|
-
"@arikajs/middleware": "
|
|
32
|
+
"@arikajs/middleware": "0.10.0"
|
|
41
33
|
},
|
|
42
34
|
"devDependencies": {
|
|
43
35
|
"@types/node": "^20.11.24",
|
|
44
36
|
"typescript": "^5.3.3"
|
|
45
37
|
},
|
|
46
|
-
"author": "Prakash Tank"
|
|
47
|
-
|
|
38
|
+
"author": "Prakash Tank",
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsc -p tsconfig.json",
|
|
41
|
+
"clean": "rm -rf dist",
|
|
42
|
+
"test": "npx tsx tests/Dispatcher.test.ts",
|
|
43
|
+
"test:watch": "npx tsx --watch tests/Dispatcher.test.ts",
|
|
44
|
+
"dev": "tsc -p tsconfig.json --watch"
|
|
45
|
+
}
|
|
46
|
+
}
|