-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "@blockchainhub/blo",
"version": "1.2.1",
"license": "CORE",
"author": "Pierre Bertet <[email protected]>",
"contributors": [
"Blockchain Hub @bchainhub"
],
"description": "blo is a small and fast library to generate Blockchain identicons.",
"keywords": [
"core",
"blockchain",
"xcb",
"identicon",
"blockies",
"web3",
"dapps",
"blo"
],
"homepage": "https://github.com/bchainhub/blo",
"bugs": "https://github.com/bchainhub/blo/issues",
"repository": "github:bchainhub/blo",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"dev": "vite ./demos/react",
"build": "tsc && vite build",
"ncu-all": "ncu -u && cd demos/bun && ncu -u && cd ../node && ncu -u && cd ../react && ncu -u && cd ../../benchmark && ncu -u"
},
"files": [
"dist"
],
"sideEffects": false,
"devDependencies": {
"globals": "^15.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.5.3"
},
"engines": {
"node": ">=16"
}
}