-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.21 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
{
"name": "@funded-labs/plug-mobile-sdk",
"version": "0.1.3",
"main": "dist/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/funded-labs/plug-mobile-sdk",
"author": "Funded Labs",
"license": "MIT",
"scripts": {
"build": "npm run clean && npm-run-all --parallel build:** && node ./scripts/add-package.js",
"build:cjs": "tsc --module commonjs --target es6 --outDir ./dist",
"build:esm": "tsc --module es2015 --target es6 --outDir ./dist/esm -d false",
"prepublishOnly": "npm run build",
"clean": "rimraf ./dist",
"publish:local": "npm run build && npm publish --access public --@funded-labs:registry=${LOCAL_REGISTRY:=http://localhost:4873/} --force",
"unpublish:local": "npm unpublish @funded-labs/plug-inpage-provider --@funded-labs:registry=${LOCAL_REGISTRY:=http://localhost:4873/} --force"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"typescript": "4.2.4"
},
"dependencies": {
"@dfinity/agent": "^1.0.1",
"@dfinity/candid": "^1.0.1",
"@dfinity/identity": "^1.0.1",
"@dfinity/identity-secp256k1": "^1.0.1",
"@walletconnect/universal-provider": "^2.11.2"
}
}