@01.software/sdk 0.2.7 → 0.2.8
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 +12 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@01.software/sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "01.software SDK",
|
|
5
5
|
"author": "<office@01.works>",
|
|
6
6
|
"keywords": [],
|
|
@@ -52,6 +52,9 @@
|
|
|
52
52
|
"./package.json": "./package.json"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
57
|
+
},
|
|
55
58
|
"files": [
|
|
56
59
|
"dist"
|
|
57
60
|
],
|
|
@@ -85,6 +88,9 @@
|
|
|
85
88
|
"react": ">=18",
|
|
86
89
|
"react-dom": ">=18"
|
|
87
90
|
},
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public"
|
|
93
|
+
},
|
|
88
94
|
"scripts": {
|
|
89
95
|
"dev": "tsup --watch",
|
|
90
96
|
"clean": "rimraf ./dist ./coverage",
|
|
@@ -92,10 +98,13 @@
|
|
|
92
98
|
"test": "vitest",
|
|
93
99
|
"test:watch": "vitest --watch",
|
|
94
100
|
"test:publish": "publint --strict && attw --pack --ignore-rules no-resolution",
|
|
101
|
+
"check-types": "tsc --noEmit",
|
|
95
102
|
"build": "tsup",
|
|
96
103
|
"version:dev": "node ../../scripts/update-version.js",
|
|
97
104
|
"publish:dev": "pnpm run version:dev && pnpm publish --no-git-checks --access public --tag dev",
|
|
98
|
-
"version:
|
|
99
|
-
"
|
|
105
|
+
"version:patch": "pnpm version patch --no-git-tag-version",
|
|
106
|
+
"version:minor": "pnpm version minor --no-git-tag-version",
|
|
107
|
+
"version:major": "pnpm version major --no-git-tag-version",
|
|
108
|
+
"publish:prod": "pnpm publish --access public"
|
|
100
109
|
}
|
|
101
110
|
}
|