-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.79 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
{
"name": "event-contract-builder",
"version": "0.2.0",
"description": "Open-source event-contract schema library and shared plugin interface for Bleavit Foresight.",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./src": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./cnl": {
"types": "./dist/src/cnl.d.ts",
"default": "./dist/src/cnl.js"
},
"./schema": {
"types": "./dist/src/schema/event-contract.d.ts",
"default": "./dist/src/schema/event-contract.js"
},
"./foresight": {
"types": "./dist/src/foresight/index.d.ts",
"default": "./dist/src/foresight/index.js"
}
},
"license": "Apache-2.0",
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE",
"THIRD_PARTY_LICENSES.md",
"DISCLAIMER.md"
],
"scripts": {
"build": "bun run scripts/build.ts",
"test": "bun run build && bun test",
"format": "prettier . --write",
"format:check": "prettier . --check",
"refresh:plugin": "python3 scripts/refresh-plugin.py",
"check": "tsc --noEmit",
"package:plugin": "python3 scripts/package-plugin.py"
},
"author": "Christopher Maximilian Altmann",
"repository": {
"type": "git",
"url": "git+https://github.com/Chralt98/event-contract-builder.git"
},
"homepage": "https://github.com/Chralt98/event-contract-builder#readme",
"bugs": {
"url": "https://github.com/Chralt98/event-contract-builder/issues"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.9.3",
"prettier": "^3.8.4"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"zod": "^4.4.3"
}
}