@digitalculture/ochre-sdk 0.1.20 → 0.1.21

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": "@digitalculture/ochre-sdk",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Node.js library for working with OCHRE (Online Cultural and Historical Research Environment) data",
@@ -36,26 +36,28 @@
36
36
  "zod": "^3.24.1"
37
37
  },
38
38
  "devDependencies": {
39
+ "@antfu/eslint-config": "^4.1.0",
39
40
  "@arethetypeswrong/cli": "^0.17.3",
40
41
  "@changesets/cli": "^2.27.12",
41
42
  "@types/node": "^22.10.10",
43
+ "eslint-plugin-unused-imports": "^4.1.4",
44
+ "prettier": "^3.4.2",
42
45
  "tsup": "^8.3.6",
43
46
  "typescript": "^5.7.3",
44
- "vitest": "^3.0.4",
45
- "@digitalculture/eslint-config": "^1.0.0",
46
- "@digitalculture/typescript-config": "1.0.0"
47
+ "vitest": "^3.0.4"
47
48
  },
48
49
  "scripts": {
49
- "dev:package": "tsup src/index.ts --watch",
50
- "build:package": "tsup",
51
- "lint:package": "eslint .",
52
- "lint:fix:package": "eslint . --fix",
53
- "check-types:package": "tsc --noEmit",
54
- "check-exports:package": "attw --pack .",
55
- "format:package": "prettier --check .",
56
- "format:fix:package": "prettier --write --list-different .",
57
- "test:package": "vitest run",
58
- "ci:package": "pnpm run build:package && pnpm run check-format:package && pnpm run check-exports:package && pnpm run lint:package && pnpm run test:package",
59
- "publish:package": "pnpm install --frozen-lockfile && changeset version && changeset publish"
50
+ "dev": "tsup src/index.ts --watch",
51
+ "build": "tsup",
52
+ "lint": "eslint .",
53
+ "lint:fix": "eslint . --fix",
54
+ "format": "prettier --check .",
55
+ "format:fix": "prettier --write --list-different .",
56
+ "check-types": "tsc --noEmit",
57
+ "check-exports": "attw --pack .",
58
+ "test": "vitest run",
59
+ "ci": "pnpm run build && pnpm run lint && pnpm run format && pnpm run check-types && pnpm run check-exports && pnpm run test",
60
+ "changeset": "changeset add",
61
+ "release": "changeset version && changeset publish"
60
62
  }
61
63
  }