-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 998 Bytes
/
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
{
"name": "@coinsamba/real-digital-abis",
"version": "1.0.0",
"private": false,
"description": "Just the Real Digital CBDC ABIs in an NPM package. As simple as that!",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"prepublish": "build",
"build": "microbundle",
"dev": "microbundle watch"
},
"keywords": [
"real digital",
"cbdc",
"erc20",
"abi",
"solidity"
],
"files": [
"dist/**.js*",
"dist/**/*.ts"
],
"author": "Gustavo <[email protected]>",
"license": "MIT",
"devDependencies": {
"microbundle": "^0.15.1"
},
"homepage": "https://github.com/coinsambacom/real-digital-abis",
"repository": "[email protected]:coinsambacom/js-exchanges-connector.git"
}