-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.58 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@blocks/table",
"version": "0.3.4",
"private": true,
"description": "Display and manipulate tabular data with filter, sort, and search features",
"keywords": [
"blockprotocol",
"blocks",
"block"
],
"repository": {
"type": "git",
"url": "https://github.com/hashintel/hash.git#main",
"directory": "blocks/table"
},
"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 src/types/generated/*.ts",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:tsc": "tsc --noEmit",
"serve": "block-scripts serve"
},
"prettier": {
"printWidth": 80,
"trailingComma": "all"
},
"dependencies": {
"@blockprotocol/graph": "0.3.4",
"@glideapps/glide-data-grid": "patch:@glideapps/glide-data-grid@npm%3A6.0.3#~/.yarn/patches/@glideapps-glide-data-grid-npm-6.0.3-f71d586425.patch",
"@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",
"clsx": "1.2.1",
"immer": "9.0.21",
"lodash.debounce": "4.0.8",
"lodash.isequal": "4.5.0",
"lodash.uniqueid": "4.0.1",
"react-device-detect": "2.2.3",
"react-laag": "2.0.5",
"react-sizeme": "3.0.2",
"rooks": "7.14.1"
},
"devDependencies": {
"@local/eslint": "0.0.0-private",
"@local/tsconfig": "0.0.0-private",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.isequal": "4.5.8",
"@types/lodash.uniqueid": "4.0.9",
"@types/react-dom": "19.1.7",
"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": {
"blockType": {
"entryPoint": "react"
},
"displayName": "Table",
"examples": [
{
"https://blockprotocol.org/@blockprotocol/types/property-type/title/": "My Table",
"https://blockprotocol.org/@hash/types/property-type/table-local-column/": [
{
"https://blockprotocol.org/@blockprotocol/types/property-type/title/": "Full Name",
"https://blockprotocol.org/@hash/types/property-type/table-local-column-id/": "fullName"
},
{
"https://blockprotocol.org/@blockprotocol/types/property-type/title/": "Role",
"https://blockprotocol.org/@hash/types/property-type/table-local-column-id/": "role"
}
],
"https://blockprotocol.org/@hash/types/property-type/table-local-row/": [
{
"fullName": "John Johnson",
"role": "Role 1"
},
{
"fullName": "Bob Bobson",
"role": "Role 2"
},
{
"fullName": "Alice Aliceson",
"role": "Role 3"
}
]
}
],
"icon": "public/table.svg",
"image": "public/block-preview.png",
"name": "@hash/table",
"protocol": "0.3",
"blockEntityType": "https://blockprotocol.org/@hash/types/entity-type/table-block/v/4",
"codegen": {
"outputFolder": "src/types/generated",
"targets": {
"block-entity.ts": [
{
"blockEntityType": true
}
]
}
}
}
}