@shopware-ag/app-server-sdk
Advanced tools
Comparing version 1.1.0 to 1.1.1
314
package.json
{ | ||
"name": "@shopware-ag/app-server-sdk", | ||
"version": "1.1.0", | ||
"description": "App Server SDK for JavaScript", | ||
"type": "module", | ||
"license": "MIT", | ||
"keywords": ["shopware", "app-server"], | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./dist/esm/mod.d.ts", | ||
"default": "./dist/esm/mod.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/mod.d.ts", | ||
"default": "./dist/commonjs/mod.js" | ||
} | ||
}, | ||
"./helper/app-actions": { | ||
"import": { | ||
"types": "./dist/esm/helper/app-actions.d.ts", | ||
"default": "./dist/esm/helper/app-actions.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/helper/app-actions.d.ts", | ||
"default": "./dist/commonjs/helper/app-actions.js" | ||
} | ||
}, | ||
"./integration/hono": { | ||
"import": { | ||
"types": "./dist/esm/integration/hono.d.ts", | ||
"default": "./dist/esm/integration/hono.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/hono.d.ts", | ||
"default": "./dist/commonjs/integration/hono.js" | ||
} | ||
}, | ||
"./integration/cloudflare-kv": { | ||
"import": { | ||
"types": "./dist/esm/integration/cloudflare-kv.d.ts", | ||
"default": "./dist/esm/integration/cloudflare-kv.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/cloudflare-kv.d.ts", | ||
"default": "./dist/commonjs/integration/cloudflare-kv.js" | ||
} | ||
}, | ||
"./integration/deno-kv": { | ||
"import": { | ||
"types": "./dist/esm/integration/deno-kv.d.ts", | ||
"default": "./dist/esm/integration/deno-kv.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/deno-kv.d.ts", | ||
"default": "./dist/commonjs/integration/deno-kv.js" | ||
} | ||
}, | ||
"./integration/dynamodb": { | ||
"import": { | ||
"types": "./dist/esm/integration/dynamodb.d.ts", | ||
"default": "./dist/esm/integration/dynamodb.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/dynamodb.d.ts", | ||
"default": "./dist/commonjs/integration/dynamodb.js" | ||
} | ||
}, | ||
"./integration/bun-sqlite": { | ||
"import": { | ||
"types": "./dist/esm/integration/bun-sqlite.d.ts", | ||
"default": "./dist/esm/integration/bun-sqlite.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/bun-sqlite.d.ts", | ||
"default": "./dist/commonjs/integration/bun-sqlite.js" | ||
} | ||
}, | ||
"./types": { | ||
"import": { | ||
"types": "./dist/esm/types.d.ts", | ||
"default": "./dist/esm/types.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/types.d.ts", | ||
"default": "./dist/commonjs/types.js" | ||
} | ||
} | ||
}, | ||
"main": "./dist/commonjs/mod.js", | ||
"module": "./dist/esm/mod.js", | ||
"types": "./dist/commonjs/mod.d.ts", | ||
"files": ["dist"], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"peerDependencies": { | ||
"hono": "^4", | ||
"@aws-sdk/client-dynamodb": "~3.637", | ||
"@aws-sdk/lib-dynamodb": "~3.637" | ||
}, | ||
"peerDependenciesMeta": { | ||
"hono": { | ||
"optional": true | ||
}, | ||
"@aws-sdk/client-dynamodb": { | ||
"optional": true | ||
}, | ||
"@aws-sdk/lib-dynamodb": { | ||
"optional": true | ||
} | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.8.3", | ||
"@types/bun": "^1.1.6", | ||
"tshy": "^3.0.2", | ||
"hono": "^4.5.6", | ||
"@cloudflare/workers-types": "^4.20240821.1", | ||
"@aws-sdk/client-dynamodb": "~3.637", | ||
"@aws-sdk/lib-dynamodb": "~3.637" | ||
}, | ||
"tshy": { | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": "./src/mod.ts", | ||
"./helper/app-actions": "./src/helper/app-actions.ts", | ||
"./integration/hono": "./src/integration/hono.ts", | ||
"./integration/cloudflare-kv": "./src/integration/cloudflare-kv.ts", | ||
"./integration/deno-kv": "./src/integration/deno-kv.ts", | ||
"./integration/dynamodb": "./src/integration/dynamodb.ts", | ||
"./integration/bun-sqlite": "./src/integration/bun-sqlite.ts", | ||
"./types": "./src/types.ts" | ||
} | ||
}, | ||
"scripts": { | ||
"init": "tshy && biome format . --write", | ||
"lint": "biome ci .", | ||
"lint:fix": "biome lint . --write && biome format . --write && biome check . --write", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"trustedDependencies": ["@biomejs/biome"] | ||
"name": "@shopware-ag/app-server-sdk", | ||
"version": "1.1.1", | ||
"description": "App Server SDK for JavaScript", | ||
"type": "module", | ||
"license": "MIT", | ||
"keywords": [ | ||
"shopware", | ||
"app-server" | ||
], | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./dist/esm/mod.d.ts", | ||
"default": "./dist/esm/mod.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/mod.d.ts", | ||
"default": "./dist/commonjs/mod.js" | ||
} | ||
}, | ||
"./helper/app-actions": { | ||
"import": { | ||
"types": "./dist/esm/helper/app-actions.d.ts", | ||
"default": "./dist/esm/helper/app-actions.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/helper/app-actions.d.ts", | ||
"default": "./dist/commonjs/helper/app-actions.js" | ||
} | ||
}, | ||
"./integration/hono": { | ||
"import": { | ||
"types": "./dist/esm/integration/hono.d.ts", | ||
"default": "./dist/esm/integration/hono.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/hono.d.ts", | ||
"default": "./dist/commonjs/integration/hono.js" | ||
} | ||
}, | ||
"./integration/cloudflare-kv": { | ||
"import": { | ||
"types": "./dist/esm/integration/cloudflare-kv.d.ts", | ||
"default": "./dist/esm/integration/cloudflare-kv.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/cloudflare-kv.d.ts", | ||
"default": "./dist/commonjs/integration/cloudflare-kv.js" | ||
} | ||
}, | ||
"./integration/deno-kv": { | ||
"import": { | ||
"types": "./dist/esm/integration/deno-kv.d.ts", | ||
"default": "./dist/esm/integration/deno-kv.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/deno-kv.d.ts", | ||
"default": "./dist/commonjs/integration/deno-kv.js" | ||
} | ||
}, | ||
"./integration/dynamodb": { | ||
"import": { | ||
"types": "./dist/esm/integration/dynamodb.d.ts", | ||
"default": "./dist/esm/integration/dynamodb.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/dynamodb.d.ts", | ||
"default": "./dist/commonjs/integration/dynamodb.js" | ||
} | ||
}, | ||
"./integration/bun-sqlite": { | ||
"import": { | ||
"types": "./dist/esm/integration/bun-sqlite.d.ts", | ||
"default": "./dist/esm/integration/bun-sqlite.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/bun-sqlite.d.ts", | ||
"default": "./dist/commonjs/integration/bun-sqlite.js" | ||
} | ||
}, | ||
"./integration/better-sqlite3": { | ||
"import": { | ||
"types": "./dist/esm/integration/better-sqlite3.d.ts", | ||
"default": "./dist/esm/integration/better-sqlite3.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/integration/better-sqlite3.d.ts", | ||
"default": "./dist/commonjs/integration/better-sqlite3.js" | ||
} | ||
}, | ||
"./types": { | ||
"import": { | ||
"types": "./dist/esm/types.d.ts", | ||
"default": "./dist/esm/types.js" | ||
}, | ||
"require": { | ||
"types": "./dist/commonjs/types.d.ts", | ||
"default": "./dist/commonjs/types.js" | ||
} | ||
} | ||
}, | ||
"main": "./dist/commonjs/mod.js", | ||
"module": "./dist/esm/mod.js", | ||
"types": "./dist/commonjs/mod.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"publishConfig": { | ||
"access": "public", | ||
"provenance": true | ||
}, | ||
"repository": { | ||
"url": "https://github.com/shopware/app-sdk-js" | ||
}, | ||
"peerDependencies": { | ||
"@aws-sdk/client-dynamodb": "~3.637", | ||
"@aws-sdk/lib-dynamodb": "~3.637", | ||
"better-sqlite3": "^11", | ||
"hono": "^4" | ||
}, | ||
"peerDependenciesMeta": { | ||
"hono": { | ||
"optional": true | ||
}, | ||
"@aws-sdk/client-dynamodb": { | ||
"optional": true | ||
}, | ||
"@aws-sdk/lib-dynamodb": { | ||
"optional": true | ||
}, | ||
"better-sqlite3": { | ||
"optional": true | ||
} | ||
}, | ||
"devDependencies": { | ||
"@aws-sdk/client-dynamodb": "~3.637", | ||
"@aws-sdk/lib-dynamodb": "~3.637", | ||
"@biomejs/biome": "1.8.3", | ||
"@cloudflare/workers-types": "^4.20240821.1", | ||
"@types/better-sqlite3": "^7.6.11", | ||
"@types/bun": "^1.1.6", | ||
"better-sqlite3": "^11", | ||
"hono": "^4.5.6", | ||
"tshy": "^3.0.2" | ||
}, | ||
"tshy": { | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": "./src/mod.ts", | ||
"./helper/app-actions": "./src/helper/app-actions.ts", | ||
"./integration/hono": "./src/integration/hono.ts", | ||
"./integration/cloudflare-kv": "./src/integration/cloudflare-kv.ts", | ||
"./integration/deno-kv": "./src/integration/deno-kv.ts", | ||
"./integration/dynamodb": "./src/integration/dynamodb.ts", | ||
"./integration/bun-sqlite": "./src/integration/bun-sqlite.ts", | ||
"./integration/better-sqlite3": "./src/integration/better-sqlite3.ts", | ||
"./types": "./src/types.ts" | ||
}, | ||
"exclude": [ | ||
"src/**/*.test.ts" | ||
] | ||
}, | ||
"scripts": { | ||
"init": "tshy && biome format . --write", | ||
"lint": "biome ci .", | ||
"lint:fix": "biome lint . --write && biome format . --write && biome check . --write", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"trustedDependencies": [ | ||
"@biomejs/biome", | ||
"better-sqlite3" | ||
] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
263445
4
9
125
2599