@point-hub/papi 0.5.16 → 0.5.17
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/lib/index.js +13593 -11950
- package/package.json +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@point-hub/papi",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.17",
|
|
4
4
|
"description": "Point API Framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"stub/"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
-
"
|
|
13
|
+
"types": "tsc -p tsconfig.json",
|
|
14
14
|
"dev": "shx rm -rf lib && bun run build.ts --watch",
|
|
15
|
-
"build": "shx rm -rf lib && bun run
|
|
15
|
+
"build": "shx rm -rf lib && bun run types && bun run build.ts && bun run build:declaration",
|
|
16
16
|
"build:declaration": "shx rm -rf tsconfig.tsbuildinfo && shx rm -rf tsconfig.types.tsbuildinfo && tsc -p tsconfig.types.json",
|
|
17
17
|
"lint": "eslint ./src/**/*.ts",
|
|
18
18
|
"lint:fix": "bun run lint -- --fix"
|
|
@@ -34,24 +34,24 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@eslint/eslintrc": "^3.3.1",
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@types/compression": "^1.
|
|
39
|
-
"@types/cors": "^2.8.
|
|
40
|
-
"@types/express": "^5.0.
|
|
41
|
-
"@types/node": "^
|
|
42
|
-
"@types/shelljs": "^0.8.
|
|
37
|
+
"@eslint/js": "^9.37.0",
|
|
38
|
+
"@types/compression": "^1.8.1",
|
|
39
|
+
"@types/cors": "^2.8.19",
|
|
40
|
+
"@types/express": "^5.0.3",
|
|
41
|
+
"@types/node": "^24.7.2",
|
|
42
|
+
"@types/shelljs": "^0.8.17",
|
|
43
43
|
"@types/validatorjs": "^3.15.5",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
45
|
-
"@typescript-eslint/parser": "^8.
|
|
46
|
-
"bun-types": "^1.
|
|
47
|
-
"cross-env": "^
|
|
48
|
-
"eslint": "^9.
|
|
49
|
-
"eslint-config-prettier": "^10.1.
|
|
50
|
-
"eslint-plugin-prettier": "^5.
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
45
|
+
"@typescript-eslint/parser": "^8.46.0",
|
|
46
|
+
"bun-types": "^1.3.0",
|
|
47
|
+
"cross-env": "^10.1.0",
|
|
48
|
+
"eslint": "^9.37.0",
|
|
49
|
+
"eslint-config-prettier": "^10.1.8",
|
|
50
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
51
51
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
52
|
-
"prettier": "^3.
|
|
52
|
+
"prettier": "^3.6.2",
|
|
53
53
|
"shx": "^0.4.0",
|
|
54
|
-
"typescript": "^5.
|
|
54
|
+
"typescript": "^5.9.3"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@point-hub/express-cli": "^0.2.2",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"@point-hub/express-factory": "^1.1.4",
|
|
60
60
|
"@point-hub/express-utils": "^0.2.10",
|
|
61
61
|
"date-fns": "^4.1.0",
|
|
62
|
-
"mongodb": "^6.
|
|
63
|
-
"shelljs": "^0.
|
|
62
|
+
"mongodb": "^6.20.0",
|
|
63
|
+
"shelljs": "^0.10.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"express": "^5.1.0"
|