This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
forked from Koniverse/SubWallet-Extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.93 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"author": "Koni Studio",
"bugs": "https://github.com/AstarNativeWallet/ArthWallet-Extension/issues",
"homepage": "https://github.com/AstarNativeWallet/ArthWallet-Extension#readme",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/AstarNativeWallet/ArthWallet-Extension.git"
},
"sideEffects": false,
"version": "0.3.3",
"workspaces": [
"packages/*"
],
"bin": {
"koni-ci-build-dev": "./scripts/koni-ci-build-dev.mjs",
"koni-ci-ghact-build": "./scripts/koni-ci-ghact-build.mjs"
},
"scripts": {
"build": "polkadot-dev-build-ts && yarn build:zip && yarn build:rollup",
"build:extra": "yarn build:i18n && yarn build:ui",
"build:i18n": "i18next-scanner --config i18next-scanner.config.js",
"build:koni-dev": "koni-ci-build-dev",
"build:release": "koni-ci-ghact-build",
"build:rollup": "polkadot-exec-rollup --config",
"build:ui": "cd packages/extension-koni && NODE_ENV=production yarn webpack --config webpack.extension.cjs --mode production",
"build:zip": "yarn build:zip:dst && yarn build:zip:src",
"build:zip:dst": "rm -rf ./master-build.zip && cd packages/extension-koni/build && zip -r -FS ../../../master-build.zip .",
"build:zip:src": "rm -rf ./master-src.zip && zip -r -x '*build/*' -x '*node_modules*' -FS ./master-src.zip packages .editorconfig .eslintignore .eslintrc.js babel.config.cjs CHANGELOG.md CONTRIBUTING.md i18next-scanner.config.js jest.config.cjs LICENSE package.json README.md tsconfig.json yarn.lock",
"clean": "polkadot-dev-clean-build",
"lint": "polkadot-dev-run-lint",
"postinstall": "polkadot-dev-yarn-only && patch-package",
"start": "yarn watch",
"test": "polkadot-dev-run-test --detectOpenHandles --testPathIgnorePatterns='/node_modules/|.*/ignore-.*\\.(test|spec)\\..*'",
"test:one": "polkadot-dev-run-test --detectOpenHandles",
"watch": "cd packages/extension-koni && yarn polkadot-exec-webpack --config webpack.watch.cjs --mode development --watch"
},
"dependencies": {
"@polkadot/util-crypto": "^9.0.1",
"@types/node": "^17.0.10",
"apollo": "^2.33.9",
"ethers": "^5.6.5",
"typescript": "^4.5.4",
"web3": "^1.7.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@polkadot/dev": "^0.66.3",
"@types/jest": "^27.4.0",
"discord-webhook-node": "^1.1.8",
"i18next-scanner": "^3.1.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"sinon-chrome": "^3.0.1"
},
"resolutions": {
"@polkadot/api": "^7.11.2-1",
"@polkadot/api-contract": "^7.11.2-1",
"@polkadot/keyring": "^8.4.1",
"@polkadot/networks": "^8.4.1",
"@polkadot/types": "^7.11.2-1",
"@polkadot/util": "^8.4.1",
"@polkadot/util-crypto": "^8.4.1",
"@polkadot/x-fetch": "^8.4.1",
"babel-core": "^7.0.0-bridge.0",
"rxjs": "^7.5.4",
"safe-buffer": "^5.2.1",
"typescript": "^4.5.3"
}
}