forked from Portkey-Wallet/portkey-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
{
"name": "@portkey/did",
"version": "2.7.1-alpha.4",
"description": "",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/commonjs/index.js"
}
},
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist/*"
],
"homepage": "https://portkey.finance/",
"repository": {
"type": "git",
"url": "https://github.com/Portkey-Wallet/portkey-web.git",
"directory": "packages/did"
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "yarn build:cjs & yarn build:esm & yarn build:types",
"build:cjs": "tsc && echo '{\"type\": \"commonjs\"}' > ./dist/commonjs/package.json",
"build:esm": "tsc --build tsconfig.esm.json && echo '{\"type\": \"module\"}' > ./dist/esm/package.json && yarn esm:fix",
"build:types": "tsc --build tsconfig.types.json",
"esm:fix": "node ../../scripts/fix-esm.js dist/esm",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --write '**/*'",
"start": "tsc --watch",
"test": "jest"
},
"dependencies": {
"@portkey/accounts": "^2.7.1-alpha.4",
"@portkey/contracts": "^2.7.1-alpha.4",
"@portkey/graphql": "^2.7.1-alpha.4",
"@portkey/request": "^2.7.1-alpha.4",
"@portkey/services": "^2.7.1-alpha.4",
"@portkey/types": "^2.7.1-alpha.4",
"@portkey/utils": "^2.7.1-alpha.4"
},
"peerDependencies": {
"aelf-sdk": "^3.4.7",
"react": "^18.2.0"
},
"devDependencies": {
"imap": "^0.8.19"
},
"gitHead": "9ba1306de72b5035883d7b102fe84beb36b5e258"
}