-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 957 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 957 Bytes
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
{
"name": "@axonlabs/hot-reload-plugin",
"version": "1.1.3",
"description": "HotReloadPlugin is an Axon plugin that enables dynamic hot‑reloading of route modules.",
"keywords": [
"Axon",
"AxonJs",
"utils",
"hot-reload",
"axon-plugin"
],
"homepage": "https://github.com/AxonJsLabs/HotReloadPlugin#readme",
"bugs": {
"url": "https://github.com/AxonJsLabs/HotReloadPlugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AxonJsLabs/HotReloadPlugin.git"
},
"license": "ISC",
"author": "Mr.MKZ",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup"
},
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"chokidar": "^4.0.3",
"@axonlabs/core": ">=0.7.2 <2.0.0"
}
}