-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) 路 2.45 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) 路 2.45 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
87
88
89
90
91
92
93
{
"name": "@blockprotocol/graph",
"version": "0.4.3",
"description": "Implementation of the Block Protocol Graph service specification for blocks and embedding applications",
"keywords": [
"blockprotocol",
"blocks",
"graph"
],
"homepage": "https://blockprotocol.org",
"bugs": {
"url": "https://github.com/blockprotocol/blockprotocol/issues"
},
"license": "MIT",
"author": {
"name": "HASH",
"url": "https://hash.ai"
},
"repository": {
"type": "git",
"url": "git@github.com:blockprotocol/blockprotocol.git",
"directory": "libs/@blockprotocol/graph"
},
"type": "module",
"types": "./dist/main.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/main.d.ts"
],
"codegen": [
"./dist/codegen.d.ts"
],
"custom-element": [
"./dist/custom-element.d.ts"
],
"graph-module-json": [
"./dist/graph-module-json.d.ts"
],
"internal": [
"./dist/internal.d.ts"
],
"react": [
"./dist/react.d.ts"
],
"stdlib": [
"./dist/stdlib.d.ts"
]
}
},
"exports": {
".": "./dist/main.js",
"./codegen": "./dist/codegen.js",
"./custom-element": "./dist/custom-element.js",
"./graph-module-json": "./dist/graph-module-json.js",
"./internal": "./dist/internal.js",
"./react": "./dist/react.js",
"./stdlib": "./dist/stdlib.js"
},
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.build.json",
"fix:eslint": "eslint --fix .",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:tsc": "tsc --noEmit",
"postpublish": "PACKAGE_DIR=$(pwd) yarn workspace @local/repo-chores exe scripts/postpublish.ts",
"prepublishOnly": "turbo run build && tsx scripts/prepublish.ts"
},
"dependencies": {
"@blockprotocol/core": "0.1.5",
"@blockprotocol/type-system": "workspace:^",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"json-schema-to-typescript": "15.0.4",
"lit": "2.8.0",
"lodash.isequal": "4.5.0",
"typescript": "5.9.3"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "15.1.3",
"@local/eslint": "workspace:*",
"@local/tsconfig": "workspace:*",
"@types/lodash.isequal": "4.5.8",
"@types/node": "22.18.13",
"@types/react": "19.2.14",
"eslint": "10.4.1",
"rimraf": "6.1.3",
"tsx": "4.20.6",
"typescript": "5.9.3"
},
"peerDependencies": {
"react": "^19.0.0"
}
}