@adobe-commerce/aio-toolkit 1.0.0 → 1.0.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/CHANGELOG.md +90 -16
- package/README.md +146 -97
- package/dist/index.d.mts +15 -12
- package/dist/index.d.ts +15 -12
- package/dist/index.js +134 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +134 -36
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe-commerce/aio-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A comprehensive TypeScript toolkit for Adobe App Builder applications providing standardized Adobe Commerce integrations, I/O Events orchestration, file storage utilities, authentication helpers, and robust backend development tools with 100% test coverage.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -38,8 +38,7 @@
|
|
|
38
38
|
"validate:commit": "npm run type-check && npm run lint:fix && npm run format && npm run test:fast",
|
|
39
39
|
"validate:push": "npm run format:check && npm run lint && npm run type-check && npm run test:ci && npm run build",
|
|
40
40
|
"security:audit": "npm audit --audit-level=moderate",
|
|
41
|
-
"prepublishOnly": "npm run build
|
|
42
|
-
"postpublish": "git checkout README.md || echo 'README.md restored'",
|
|
41
|
+
"prepublishOnly": "npm run build",
|
|
43
42
|
"prepare": "husky"
|
|
44
43
|
},
|
|
45
44
|
"keywords": [
|
|
@@ -94,15 +93,7 @@
|
|
|
94
93
|
"engines": {
|
|
95
94
|
"node": ">=18.0.0"
|
|
96
95
|
},
|
|
97
|
-
"repository": {
|
|
98
|
-
"type": "git",
|
|
99
|
-
"url": "git+https://github.com/adobe-commerce/aio-toolkit.git"
|
|
100
|
-
},
|
|
101
96
|
"publishConfig": {
|
|
102
97
|
"access": "public"
|
|
103
|
-
}
|
|
104
|
-
"bugs": {
|
|
105
|
-
"url": "https://github.com/adobe-commerce/aio-toolkit/issues"
|
|
106
|
-
},
|
|
107
|
-
"homepage": "https://github.com/adobe-commerce/aio-toolkit#readme"
|
|
98
|
+
}
|
|
108
99
|
}
|