@vaultsaas/core 0.1.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,45 @@
1
+ {
2
+ "name": "@vaultsaas/core",
3
+ "version": "0.1.0",
4
+ "description": "Open-source core SDK for VaultSaaS payments orchestration",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs"
15
+ }
16
+ },
17
+ "files": ["dist"],
18
+ "scripts": {
19
+ "lint": "biome check .",
20
+ "format": "biome format --write .",
21
+ "typecheck": "tsc --noEmit",
22
+ "test": "vitest run",
23
+ "test:coverage": "vitest run --coverage",
24
+ "docs:check": "bun ./scripts/release-readiness.mjs --mode=docs",
25
+ "package:check": "bun ./scripts/release-readiness.mjs --mode=package",
26
+ "build": "tsup",
27
+ "release:verify": "bun run lint && bun run typecheck && bun run test && bun run docs:check && bun run build && bun run package:check",
28
+ "release:dry-run": "bun run release:verify && bun pm pack --dry-run"
29
+ },
30
+ "devDependencies": {
31
+ "@biomejs/biome": "^1.9.4",
32
+ "@changesets/cli": "^2.29.7",
33
+ "@types/node": "^20.19.0",
34
+ "@vitest/coverage-v8": "^2.1.9",
35
+ "tsup": "^8.5.0",
36
+ "typescript": "^5.9.2",
37
+ "vitest": "^2.1.8"
38
+ },
39
+ "engines": {
40
+ "node": ">=20"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public"
44
+ }
45
+ }