beddel 0.2.0 → 0.2.1
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 +10 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beddel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Beddel - A secure YAML parser and OpenAPI endpoint manager for Node.js applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
"./server/*": {
|
|
24
24
|
"types": "./dist/server/*.d.ts",
|
|
25
25
|
"default": "./dist/server/*.js"
|
|
26
|
+
},
|
|
27
|
+
"./server/api/graphql": {
|
|
28
|
+
"types": "./dist/server/api/graphql.d.ts",
|
|
29
|
+
"default": "./dist/server/api/graphql.js"
|
|
26
30
|
}
|
|
27
31
|
},
|
|
28
32
|
"scripts": {
|
|
@@ -33,7 +37,10 @@
|
|
|
33
37
|
"test:watch": "jest --watch",
|
|
34
38
|
"test:coverage": "jest --coverage",
|
|
35
39
|
"lint": "eslint src --ext .ts",
|
|
36
|
-
"lint:fix": "eslint src --ext .ts --fix"
|
|
40
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
41
|
+
"version:patch": "npm version patch",
|
|
42
|
+
"version:minor": "npm version minor",
|
|
43
|
+
"version:major": "npm version major"
|
|
37
44
|
},
|
|
38
45
|
"keywords": [
|
|
39
46
|
"yaml",
|
|
@@ -77,4 +84,4 @@
|
|
|
77
84
|
"engines": {
|
|
78
85
|
"node": ">=18.0.0"
|
|
79
86
|
}
|
|
80
|
-
}
|
|
87
|
+
}
|