forked from Portkey-Wallet/portkey-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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": "@portkey/detect-provider",
"version": "1.1.1",
"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-providers.git",
"directory": "packages/detect-provider"
},
"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": "fix-esm-import-path dist/esm/index.js",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --write '**/*'",
"start": "tsc --watch"
},
"dependencies": {
"@portkey/provider-types": "^1.1.1"
},
"gitHead": "d3ff4a9f2630de38fbf503deaac1dfe0da1a1feb"
}