-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "@three-ws/avatar-cli",
"version": "0.2.0",
"description": "Terminal-native tooling for on-chain avatars: scaffold, validate, hash, and preview avatar manifests from your shell or CI.",
"keywords": [
"three.ws",
"avatar",
"cli",
"on-chain",
"web3",
"ens",
"caip",
"scaffold",
"manifest",
"readyplayerme-alternative"
],
"author": "three.ws <support@three.ws> (https://three.ws)",
"license": "Apache-2.0",
"homepage": "https://three.ws",
"repository": {
"type": "git",
"url": "git+https://github.com/nirholas/three.ws.git",
"directory": "packages/avatar-cli"
},
"type": "module",
"bin": {
"three-ws-avatar": "./src/cli.js"
},
"main": "./src/cli.js",
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js"
},
"dependencies": {
"@three-ws/avatar-schema": "^0.2.0"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/nirholas/three.ws/issues"
},
"publishConfig": {
"access": "public"
}
}