-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.54 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
{
"name": "@kotuke/bitizen",
"version": "2.0.0",
"description": "Deterministic, zero-dependency pixel avatars: the whole figure is personal, in two styles",
"keywords": [
"identicon",
"avatar",
"avatars",
"pixel-art",
"png",
"svg",
"deterministic",
"zero-dependency",
"hmac",
"pixel-people",
"two-styles"
],
"homepage": "https://kotuke.github.io/bitizen/",
"repository": {
"type": "git",
"url": "git+https://github.com/kotuke/bitizen.git"
},
"bugs": {
"url": "https://github.com/kotuke/bitizen/issues"
},
"author": "Aleksandr Davydenko",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"browser": "./src/browser.mjs",
"default": "./src/index.mjs"
},
"./browser": {
"types": "./src/index.d.ts",
"default": "./src/browser.mjs"
},
"./server": {
"default": "./src/server.mjs"
}
},
"types": "./src/index.d.ts",
"bin": {
"bitizen": "./src/cli.mjs"
},
"files": [
"src",
"CHANGELOG.md",
"llms.txt"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node src/server.mjs",
"test": "node --test",
"benchmark": "node benchmark.mjs",
"collision": "node collision-check.mjs",
"sample": "node examples/generate-samples.mjs",
"preview": "node examples/contact-sheet.mjs",
"lint": "eslint .",
"docs": "node examples/build-docs.mjs"
},
"devDependencies": {
"eslint": "^10.8.0"
}
}