-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "blo",
"version": "1.2.0",
"license": "MIT",
"author": "Pierre Bertet <hi@bpier.re>",
"description": "blo is a small and fast library to generate Ethereum identicons.",
"keywords": [
"ethereum",
"eth",
"identicon",
"blockies",
"web3",
"dapps"
],
"homepage": "https://github.com/bpierre/blo",
"bugs": "https://github.com/bpierre/blo/issues",
"repository": "github:bpierre/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",
"lint": "eslint '**/*.{ts,tsx}'"
},
"files": [
"dist"
],
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^15.0.0",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=16"
}
}