-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 824 Bytes
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
{
"name": "abi4",
"version": "0.1.0",
"description": "ARC-4 method selector generation and reverse lookup using SHA-512/256",
"author": "nullun",
"repository": {
"type": "git",
"url": "git+https://github.com/nullun/abi4.git"
},
"bugs": {
"url": "https://github.com/nullun/abi4/issues"
},
"homepage": "https://github.com/nullun/abi4#readme",
"main": "dist/abi4.cjs",
"module": "dist/abi4.mjs",
"unpkg": "dist/abi4.min.js",
"jsdelivr": "dist/abi4.min.js",
"exports": {
"import": "./dist/abi4.mjs",
"require": "./dist/abi4.cjs",
"browser": "./dist/abi4.min.js"
},
"files": ["dist"],
"scripts": {
"build": "node build.mjs",
"test": "node test.mjs"
},
"keywords": ["arc4", "abi4", "algorand", "selector", "sha512", "sha-512/256", "abi"],
"license": "MIT"
}