retrex-extensibles-core 1.0.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 +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "retrex-extensibles-core",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The Core System for the New Upcoming Billing System Called Retrex-Billing",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"bin": {
|
|
11
|
+
"retrex-cli": "./dist/cli/index.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "rimraf dist && tsup",
|
|
18
|
+
"clean": "rimraf dist",
|
|
19
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"chokidar": "^4.0.3",
|
|
23
|
+
"fast-glob": "^3.3.3",
|
|
24
|
+
"fs-extra": "^11.3.0",
|
|
25
|
+
"globby": "^14.1.0",
|
|
26
|
+
"socket.io": "^4.8.1",
|
|
27
|
+
"tslib": "^2.8.1",
|
|
28
|
+
"yaml": "^2.8.0",
|
|
29
|
+
"yargs": "^18.0.0",
|
|
30
|
+
"zod": "^4.0.5"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/node": "^24.1.0",
|
|
34
|
+
"@types/yargs": "^17.0.33",
|
|
35
|
+
"rimraf": "^6.0.1",
|
|
36
|
+
"tsup": "^8.5.0",
|
|
37
|
+
"typescript": "^5.8.3"
|
|
38
|
+
}
|
|
39
|
+
}
|