-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.21 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": "@blocks/chart",
"version": "0.1.2",
"private": true,
"description": "A block for plotting entities in a 2D chart",
"keywords": [
"blockprotocol",
"blocks",
"block"
],
"repository": {
"type": "git",
"url": "https://github.com/hashintel/hash.git#main",
"directory": "blocks/chart"
},
"license": "(MIT OR Apache-2.0)",
"author": "HASH",
"type": "module",
"scripts": {
"build": "block-scripts build",
"codegen": "block-scripts codegen && yarn format",
"dev": "block-scripts dev",
"fix:eslint": "eslint --fix .",
"format": "prettier --write --ignore-unknown .",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:tsc": "tsc --noEmit",
"serve": "block-scripts serve"
},
"dependencies": {
"@blockprotocol/graph": "0.3.4",
"@hashintel/block-design-system": "0.0.5",
"@hashintel/design-system": "0.0.9-canary.2",
"@local/hash-isomorphic-utils": "0.0.0-private",
"@mui/material": "5.18.0",
"echarts": "5.6.0",
"lodash.debounce": "4.0.8",
"react-hook-form": "7.61.1"
},
"devDependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@local/eslint": "0.0.0-private",
"@local/tsconfig": "0.0.0-private",
"@types/lodash.debounce": "4.0.9",
"@types/react-dom": "19.1.7",
"@types/react-is": "19.0.0",
"block-scripts": "0.3.4",
"eslint": "10.0.3",
"mock-block-dock": "0.1.9",
"prettier": "3.8.1",
"react": "19.1.1",
"react-dom": "19.1.1",
"typescript": "6.0.3"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"block-scripts": {
"port": 63212
},
"blockprotocol": {
"name": "@hash/chart",
"displayName": "Chart",
"blockType": {
"entryPoint": "react"
},
"protocol": "0.3",
"blockEntityType": "https://blockprotocol.org/@hash/types/entity-type/chart-block/v/1",
"codegen": {
"outputFolder": "src/types/generated",
"targets": {
"block-entity.ts": [
{
"blockEntityType": true
}
]
}
},
"examples": [
{}
],
"icon": "public/chart-line-regular.svg",
"image": "public/block-preview.svg"
}
}