📄 package.json
D-OPEN SOVEREIGN
1{
2 "name": "@the_library/standard-adapters",
3 "version": "1.0.0",
4 "description": "Runtime StandardAdapter implementations for all canonical standards.",
5 "type": "module",
6 "main": "./dist/index.js",
7 "types": "./dist/index.d.ts",
8 "exports": {
9 ".": {
10 "types": "./dist/index.d.ts",
11 "import": "./dist/index.js"
12 },
13 "./isbn": {
14 "types": "./dist/isbn/index.d.ts",
15 "import": "./dist/isbn/index.js"
16 },
17 "./issn": {
18 "types": "./dist/issn/index.d.ts",
19 "import": "./dist/issn/index.js"
20 },
21 "./isni": {
22 "types": "./dist/isni/index.d.ts",
23 "import": "./dist/isni/index.js"
24 },
25 "./orcid": {
26 "types": "./dist/orcid/index.d.ts",
27 "import": "./dist/orcid/index.js"
28 },
29 "./ddc": {
30 "types": "./dist/ddc/index.d.ts",
31 "import": "./dist/ddc/index.js"
32 },
33 "./lcc": {
34 "types": "./dist/lcc/index.d.ts",
35 "import": "./dist/lcc/index.js"
36 },
37 "./udc": {
38 "types": "./dist/udc/index.d.ts",
39 "import": "./dist/udc/index.js"
40 },
41 "./clc": {
42 "types": "./dist/clc/index.d.ts",
43 "import": "./dist/clc/index.js"
44 },
45 "./bbk": {
46 "types": "./dist/bbk/index.d.ts",
47 "import": "./dist/bbk/index.js"
48 },
49 "./tlc": {
50 "types": "./dist/tlc/index.d.ts",
51 "import": "./dist/tlc/index.js"
52 },
53 "./cc": {
54 "types": "./dist/cc/index.d.ts",
55 "import": "./dist/cc/index.js"
56 }
57 },
58 "files": ["dist"],
59 "sideEffects": false,
60 "scripts": {
61 "build": "tsup",
62 "test": "vitest run",
63 "test:integration": "INTEGRATION=true vitest run",
64 "typecheck": "tsc --noEmit"
65 },
66 "peerDependencies": {
67 "@the_library/canonical-schemas": "workspace:*"
68 },
69 "devDependencies": {
70 "@the_library/canonical-schemas": "workspace:*",
71 "tsup": "^8.0.1",
72 "tsx": "^4.19.3",
73 "typescript": "^6.0.3",
74 "vitest": "^1.6.1"
75 }
76}
77