-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 5.06 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"author": "Polymesh Association",
"bugs": "https://github.com/PolymeshAssociation/polymesh-wallet/issues",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"description": "A Wallet extension for Polymesh blockchain",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/PolymeshAssociation/polymesh-wallet#readme",
"keywords": [
"polymesh",
"polkadot",
"substrate",
"keyring",
"signing"
],
"license": "Apache-2.0",
"name": "polymesh-wallet",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/PolymeshAssociation/polymesh-wallet.git"
},
"sideEffects": false,
"type": "module",
"version": "2.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:chrome && yarn build:ff",
"build:after": "yarn build:extension",
"build:chrome": "cp ./packages/extension/manifest_chrome.json ./packages/extension/manifest.json && polkadot-dev-build-ts && yarn build:zip:chrome",
"build:extension": "yarn webpack --config packages/extension/webpack.config.cjs --mode production",
"build:ff": "cp ./packages/extension/manifest_firefox.json ./packages/extension/manifest.json && polkadot-dev-build-ts && yarn build:zip:ff",
"build:release": "polkadot-ci-ghact-build",
"build:zip:chrome": "cp ./packages/extension/manifest_chrome.json ./packages/extension/manifest.json && yarn build:zip:dst:chrome && yarn build:zip:src:chrome",
"build:zip:dst:chrome": "rm -rf ./master-build.zip && cd packages/extension/build && zip -r -FS ../../../master-build.zip .",
"build:zip:dst:ff": "rm -rf ./master-firefox-build.zip && cd packages/extension/build && zip -r -FS ../../../master-firefox-build.zip .",
"build:zip:ff": "cp ./packages/extension/manifest_firefox.json ./packages/extension/manifest.json && yarn build:zip:dst:ff && yarn build:zip:src:ff",
"build:zip:src": "rm -rf ./master-src.zip && zip -r -x '*build/*' -x '*node_modules*' -FS ./master-src.zip packages .editorconfig eslint.config.js eslint-custom-config.js eslint.rules.js CHANGELOG.md LICENSE package.json README.md tsconfig.json yarn.lock",
"build:zip:src:chrome": "rm -rf ./master-src.zip && zip -r -x '*build/*' -x '*node_modules*' -FS ./master-src.zip packages .editorconfig .yarnrc.yml .nvmrc CHANGELOG.md eslint-custom-config.js eslint.rules.js eslint.config.js LICENSE package.json README.md tsconfig.base.json tsconfig.build.json tsconfig.eslint.json tsconfig.json tsconfig.webpack.json yarn.lock",
"build:zip:src:ff": "rm -rf ./master-firefox-src.zip && zip -r -x '*build/*' -x '*node_modules*' -FS ./master-firefox-src.zip .editorconfig .yarnrc.yml .nvmrc CHANGELOG.md eslint-custom-config.js eslint.rules.js eslint.config.js LICENSE package.json README.md tsconfig.base.json tsconfig.build.json tsconfig.eslint.json tsconfig.json tsconfig.webpack.json yarn.lock",
"clean": "polkadot-dev-clean-build",
"lint": "polkadot-dev-run-lint",
"lint-es": "eslint .",
"postinstall": "polkadot-dev-yarn-only",
"test": "EXTENSION_PREFIX='test' polkadot-dev-run-test --loader ./packages/extension-mocks/src/loader-empty.js --env browser ^:.spec.tsx",
"test:one": "EXTENSION_PREFIX='test' polkadot-dev-run-test --env browser"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@polkadot/dev": "^0.79.3",
"@polkadot/dev-test": "^0.79.3",
"@polkadot/types": "^12.3.1",
"@polymeshassociation/polymesh-sdk": "^26.0.0-beta.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.17.7",
"@types/node": "^22.1.0",
"@types/puppeteer": "^5.4.0",
"@types/react-copy-to-clipboard": "^5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"git-commit-msg-linter": "^5.0.8",
"globals": "^15.8.0",
"jest": "^26.6.3",
"json5": "^2.2.3",
"prettier": "^3.3.2",
"puppeteer": "^5.5.0",
"sinon-chrome": "^3.0.1",
"ts-jest": "^26.5.3",
"webpack": "^5.93.0"
},
"resolutions": {
"@polkadot/api": "^12.3.1",
"@polkadot/keyring": "^13.0.2",
"@polkadot/networks": "^13.0.2",
"@polkadot/util": "^13.0.2",
"@polkadot/util-crypto": "^13.0.2",
"@polkadot/x-fetch": "^13.0.2",
"rxjs": "^7.8.1",
"safe-buffer": "^5.2.1",
"typescript": "^5.5.3"
}
}