@adobe-commerce/aio-toolkit 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 ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "@adobe-commerce/aio-toolkit",
3
+ "version": "1.0.0",
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
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist/**/*",
17
+ "README.md",
18
+ "CHANGELOG.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "build:watch": "tsup --watch",
24
+ "clean": "rm -rf dist",
25
+ "dev": "tsc --watch",
26
+ "type-check": "tsc --noEmit",
27
+ "lint": "eslint src test --ext .ts",
28
+ "lint:fix": "eslint src test --ext .ts --fix",
29
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
30
+ "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
31
+ "test": "jest --passWithNoTests",
32
+ "test:watch": "jest --watch",
33
+ "test:coverage": "jest --coverage",
34
+ "test:ci": "jest --ci --coverage --watchAll=false",
35
+ "test:fast": "jest --passWithNoTests --silent",
36
+ "pre-add": "echo '🔨 Pre-add validation...' && npm run build && echo '✅ Ready to add files!'",
37
+ "safe-add": "npm run pre-add && git add",
38
+ "validate:commit": "npm run type-check && npm run lint:fix && npm run format && npm run test:fast",
39
+ "validate:push": "npm run format:check && npm run lint && npm run type-check && npm run test:ci && npm run build",
40
+ "security:audit": "npm audit --audit-level=moderate",
41
+ "prepublishOnly": "npm run build && cp docs/package/README.md README.md",
42
+ "postpublish": "git checkout README.md || echo 'README.md restored'",
43
+ "prepare": "husky"
44
+ },
45
+ "keywords": [
46
+ "adobe",
47
+ "app-builder",
48
+ "toolkit",
49
+ "backend",
50
+ "utilities",
51
+ "typescript",
52
+ "aio"
53
+ ],
54
+ "author": "Hitarth Pattani <hitarth@example.com>",
55
+ "license": "SEE LICENSE IN LICENSE",
56
+ "dependencies": {
57
+ "@adobe/aio-lib-ims": "^7.0.2",
58
+ "@adobe/aio-sdk": "^5.0.0",
59
+ "got": "^11.8.6",
60
+ "graphql": "^16.11.0",
61
+ "node-fetch": "^2.7.0",
62
+ "oauth-1.0a": "^2.2.6",
63
+ "openwhisk": "^3.21.8"
64
+ },
65
+ "lint-staged": {
66
+ "*.ts": [
67
+ "eslint --fix",
68
+ "prettier --write"
69
+ ]
70
+ },
71
+ "devDependencies": {
72
+ "@commitlint/cli": "^19.8.1",
73
+ "@commitlint/config-conventional": "^19.8.1",
74
+ "@types/graphql": "^14.2.3",
75
+ "@types/jest": "^30.0.0",
76
+ "@types/node": "^20.10.0",
77
+ "@types/node-fetch": "^2.6.13",
78
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
79
+ "@typescript-eslint/parser": "^6.13.0",
80
+ "eslint": "^8.55.0",
81
+ "eslint-config-prettier": "^9.1.0",
82
+ "eslint-plugin-prettier": "^5.0.1",
83
+ "husky": "^9.1.7",
84
+ "jest": "^30.1.3",
85
+ "lint-staged": "^16.1.6",
86
+ "prettier": "^3.1.0",
87
+ "ts-jest": "^29.4.1",
88
+ "tsup": "^8.5.0",
89
+ "typescript": "^5.9.2"
90
+ },
91
+ "peerDependencies": {
92
+ "typescript": ">=4.9.0"
93
+ },
94
+ "engines": {
95
+ "node": ">=18.0.0"
96
+ },
97
+ "repository": {
98
+ "type": "git",
99
+ "url": "git+https://github.com/adobe-commerce/aio-toolkit.git"
100
+ },
101
+ "publishConfig": {
102
+ "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"
108
+ }