-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "@axelarjs/core",
"version": "0.2.11",
"description": "Axelarjs Core",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axelarnetwork/axelarjs"
},
"files": [
"./build",
"./index.js",
"./index.d.ts"
],
"exports": {
".": {
"import": "./build/module/index.js",
"require": "./build/commonjs/index.js"
},
"./*": {
"import": "./build/module/*.js",
"require": "./build/commonjs/*.js"
}
},
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"compile": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"docgen": "typedoc",
"deploy:docs": "gh-pages -d docs -e core"
},
"keywords": [],
"author": "",
"license": "LicenseRef-LICENSE",
"devDependencies": {
"@axelarjs/config": "workspace:*",
"gh-pages": "^6.1.1",
"rimraf": "^5.0.5",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
}
}