@digitalculture/ochre-sdk 0.1.19 → 0.1.20
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 +14 -21
- package/dist/index.cjs +0 -2027
- package/dist/index.d.cts +0 -1654
- package/dist/index.d.ts +0 -1654
- package/dist/index.js +0 -1952
package/package.json
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitalculture/ochre-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
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",
|
|
7
|
-
"homepage": "https://github.com/forumfordigitalculture/ochre-js",
|
|
8
|
-
"bugs": {
|
|
9
|
-
"url": "https://github.com/forumfordigitalculture/ochre-js/issues"
|
|
10
|
-
},
|
|
11
7
|
"author": "Firat Ciftci <firatciftci@uchicago.edu> (https://digitalculture.uchicago.edu)",
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/forumfordigitalculture/ochre-js.git"
|
|
15
|
-
},
|
|
16
8
|
"keywords": [
|
|
17
9
|
"ochre",
|
|
18
10
|
"uchicago",
|
|
@@ -45,24 +37,25 @@
|
|
|
45
37
|
},
|
|
46
38
|
"devDependencies": {
|
|
47
39
|
"@arethetypeswrong/cli": "^0.17.3",
|
|
48
|
-
"@changesets/cli": "^2.27.
|
|
40
|
+
"@changesets/cli": "^2.27.12",
|
|
49
41
|
"@types/node": "^22.10.10",
|
|
50
|
-
"tsup": "^8.3.
|
|
42
|
+
"tsup": "^8.3.6",
|
|
51
43
|
"typescript": "^5.7.3",
|
|
52
44
|
"vitest": "^3.0.4",
|
|
53
45
|
"@digitalculture/eslint-config": "^1.0.0",
|
|
54
46
|
"@digitalculture/typescript-config": "1.0.0"
|
|
55
47
|
},
|
|
56
48
|
"scripts": {
|
|
57
|
-
"dev": "tsup src/index.ts --watch",
|
|
58
|
-
"build
|
|
59
|
-
"lint
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"check-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
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"
|
|
67
60
|
}
|
|
68
61
|
}
|