-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
83 lines (83 loc) · 2.23 KB
/
package.json
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
{
"name": "@blocks/countdown",
"version": "0.2.1",
"private": true,
"description": "Countdown to a time and date",
"keywords": [
"blockprotocol",
"blocks",
"block"
],
"repository": {
"type": "git",
"url": "https://github.com/hashintel/hash.git",
"directory": "blocks/countdown"
},
"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"
},
"dependencies": {
"@blockprotocol/graph": "0.3.4",
"date-fns": "4.1.0",
"react-datepicker": "4.25.0"
},
"devDependencies": {
"@local/eslint": "0.0.0-private",
"@local/tsconfig": "0.0.0-private",
"@types/react-datepicker": "4.19.6",
"@types/react-dom": "19.0.2",
"block-scripts": "0.3.4",
"eslint": "9.17.0",
"mock-block-dock": "0.1.9",
"prettier": "3.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"typescript": "5.7.2"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"block-scripts": {
"devPort": 9090,
"servePort": 63215
},
"blockprotocol": {
"blockType": {
"entryPoint": "react"
},
"name": "@hash/countdown",
"displayName": "Countdown",
"examples": [
{
"https://blockprotocol.org/@blockprotocol/types/property-type/title/": "The Beta Launch",
"https://blockprotocol.org/@hash/types/property-type/target-date-and-time/": null,
"https://blockprotocol.org/@hash/types/property-type/countdown-block-should-display-time/": false
}
],
"icon": "public/icon.svg",
"image": "public/preview.svg",
"protocol": "0.3",
"blockEntityType": "https://blockprotocol.org/@hash/types/entity-type/countdown-block/v/2",
"codegen": {
"outputFolder": "src/types/generated",
"targets": {
"block-entity.ts": [
{
"blockEntityType": true
}
]
}
}
}
}