clear-wallet/package.json

59 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2022-08-25 22:39:02 +00:00
{
"name": "clear-wallet",
2024-04-12 16:40:24 +00:00
"version": "1.3.6",
2022-08-25 22:39:02 +00:00
"private": true,
2024-01-24 00:41:31 +00:00
"description": "Clear Wallet (CLW) is a wallet that helps you manage your Ethereum assets and interact with Ethereum dApps and contracts with the main focus on absolute privacy.",
2022-08-25 22:39:02 +00:00
"scripts": {
2022-10-07 17:07:59 +00:00
"dev": "vite",
2024-01-24 00:41:31 +00:00
"inject": "tsc --downlevelIteration --outFile src/extension/inject.js src/extension/inject.ts",
2023-03-30 14:12:44 +00:00
"content": "tsc --outFile src/extension/content.js src/extension/content.ts",
2022-11-02 15:17:59 +00:00
"post-build": "ts-node ./release-scripts/post-build.ts",
2022-11-02 15:11:16 +00:00
"build": "yarn inject && yarn content && vue-tsc --noEmit && vite build && yarn post-build",
2022-10-16 22:25:20 +00:00
"preview": "vite preview",
"release": "yarn config set version-tag-prefix clear-wallet@v && yarn config set version-git-message 'clear-wallet@v%s' && yarn version --patch && yarn postversion",
"postversion": "git push",
2022-10-16 22:34:44 +00:00
"pub": "yarn build && yarn release && ts-node ./release-scripts/create-release.ts"
2022-08-25 22:39:02 +00:00
},
"dependencies": {
2023-08-14 08:10:52 +00:00
"@capacitor/app": "^5.0.6",
"@capacitor/core": "^5.2.3",
"@capacitor/haptics": "^5.0.6",
"@capacitor/keyboard": "^5.0.6",
"@capacitor/status-bar": "^5.0.6",
"@ionic/vue": "^7.2.3",
"@ionic/vue-router": "^7.2.3",
"@types/chrome": "^0.0.243",
"core-js": "^3.32.0",
2024-04-12 16:39:26 +00:00
"ethers": "^6.11.1",
2023-08-14 08:10:52 +00:00
"vue": "^3.3.4",
"vue-router": "^4.2.4"
2022-08-25 22:39:02 +00:00
},
"devDependencies": {
2023-08-14 08:10:52 +00:00
"@capacitor/cli": "^5.2.3",
2022-10-07 17:07:59 +00:00
"@crxjs/vite-plugin": "^1.0.14",
2023-03-30 14:12:44 +00:00
"@types/archiver": "^5.3.2",
2023-08-14 08:10:52 +00:00
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^11.0.3",
2022-10-16 22:31:35 +00:00
"archiver": "^5.3.1",
2023-08-14 08:10:52 +00:00
"eslint": "^8.47.0",
"eslint-plugin-vue": "^9.17.0",
2022-10-07 17:07:59 +00:00
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
2023-08-14 08:10:52 +00:00
"jest": "^29.6.2",
2023-02-17 22:42:32 +00:00
"rollup-plugin-polyfill-node": "^0.12.0",
2023-08-14 08:10:52 +00:00
"sass": "^1.65.1",
2022-10-07 17:07:59 +00:00
"stream-browserify": "^3.0.0",
2023-08-14 08:10:52 +00:00
"ts-jest": "^29.1.1",
2022-10-16 22:25:20 +00:00
"ts-node": "^10.9.1",
2023-08-14 08:10:52 +00:00
"typescript": "^5.1.6",
"util": "^0.12.5",
2023-08-14 08:10:52 +00:00
"vite": "^4.4.9",
"vue-tsc": "^1.8.8",
2023-02-17 22:42:32 +00:00
"yarn-upgrade-all": "^0.7.2"
2024-01-24 00:41:31 +00:00
}
2022-08-25 22:39:02 +00:00
}