-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
47
48
49
50
51
{
"name": "azero-wallet-adapter",
"version": "0.3.1",
"description": "Access Aleph Zero Wallet snap through a typed API",
"keywords": [
"aleph",
"zero",
"wallet",
"metamask",
"snap"
],
"repository": {
"type": "git",
"url": "https://github.com/bide-dev/azero-wallet"
},
"license": "GPL-3.0",
"author": "Piotr Roslaniec <p.roslaniec@gmail.com>",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm clean",
"build": "run-p build:es build:cjs && pnpm post-build",
"build:cjs": "tsc --build ./tsconfig.cjs.json --verbose",
"build:es": "tsc --build ./tsconfig.es.json --verbose",
"clean": "rimraf dist",
"lint": "run-p lint:exports lint:eslint",
"lint:eslint": "eslint .",
"lint:exports": "ts-unused-exports tsconfig.json --ignoreFiles src/index.ts",
"lint:fix": "eslint . --fix && prettier . --write",
"package-check": "package-check",
"post-build": "ts-node scripts/post-build.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@metamask/providers": "^14.0.2",
"azero-wallet-types": "^0.3.0"
},
"devDependencies": {
"replace-in-file": "^6.3.5"
}
}