@softwarepatterns/am 0.0.2 → 0.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwarepatterns/am",
3
- "version": "0.0.2",
3
+ "version": "0.2.0",
4
4
  "description": "Auth client SDK for AccountMaker (Am)",
5
5
  "keywords": [
6
6
  "authentication",
@@ -43,14 +43,29 @@
43
43
  "scripts": {
44
44
  "build:clean": "rm -rf dist",
45
45
  "build": "npm run build:clean && rollup -c",
46
- "prepublishOnly": "npm run check",
46
+ "prepublishOnly": "npm run build",
47
47
  "test:unit": "bun test src",
48
48
  "test:integration": "NODE_TLS_REJECT_UNAUTHORIZED=0 bun test test/integration",
49
49
  "typecheck": "bunx tsc --noEmit",
50
- "check": "npm run typecheck && npm run build",
51
- "digest": "bunx ai-digest -i . -o codebase.md --whitespace-removal --show-output-files"
50
+ "lint": "oxlint",
51
+ "test:matrix": "./scripts/matrix.sh",
52
+ "prepare": "husky"
52
53
  },
53
54
  "publishConfig": {
54
55
  "access": "public"
56
+ },
57
+ "devDependencies": {
58
+ "@commitlint/cli": "^20.3.1",
59
+ "@commitlint/config-conventional": "^20.3.1",
60
+ "@rollup/plugin-commonjs": "^29.0.0",
61
+ "@rollup/plugin-node-resolve": "^16.0.3",
62
+ "@rollup/plugin-terser": "^0.4.4",
63
+ "@rollup/plugin-typescript": "^12.3.0",
64
+ "husky": "^9.1.7",
65
+ "oxlint": "^1.39.0",
66
+ "rollup": "^4.55.1",
67
+ "rollup-plugin-dts": "^6.3.0",
68
+ "tslib": "^2.8.1",
69
+ "typescript": "^5.9.3"
55
70
  }
56
71
  }