-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.13 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@nisd2/grc-data-model",
"version": "0.10.0",
"description": "Relational data model for EU GRC: RoPA, DPA, TOMs, supplier-core, asset-core, risk, incident schemas, plus NIS2↔GDPR mappings. Zod source of truth, JSON Schema export.",
"license": "MIT",
"homepage": "https://github.com/NISD2/grc-data-model",
"repository": {
"type": "git",
"url": "git+https://github.com/NISD2/grc-data-model.git"
},
"bugs": {
"url": "https://github.com/NISD2/grc-data-model/issues"
},
"author": "Kardashev Catalyst UG (haftungsbeschränkt) <contact@nisd2.eu> (https://nisd2.eu)",
"keywords": [
"nis2",
"gdpr",
"compliance",
"ropa",
"dpa",
"toms",
"data-model",
"zod",
"eu"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./enums": {
"types": "./dist/enums.d.ts",
"import": "./dist/enums.js"
},
"./schema": {
"types": "./dist/schema/index.d.ts",
"import": "./dist/schema/index.js"
},
"./frameworks": {
"types": "./dist/frameworks/index.d.ts",
"import": "./dist/frameworks/index.js"
},
"./satisfaction-pairs": {
"types": "./dist/satisfaction-pairs.d.ts",
"import": "./dist/satisfaction-pairs.js"
},
"./mappings/nis2-gdpr": {
"types": "./dist/mappings/nis2-gdpr.d.ts",
"import": "./dist/mappings/nis2-gdpr.js"
},
"./seed": {
"types": "./dist/seed.d.ts",
"import": "./dist/seed.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"docs:reference": "bun run scripts/generate-reference.ts",
"release": "bun run build && changeset publish"
},
"dependencies": {
"drizzle-orm": "^0.45.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}