2020-08-03 09:30:48 +02:00
|
|
|
{
|
2021-01-30 16:35:55 +01:00
|
|
|
"name": "@gnu-taler/taler-wallet-webextension",
|
2023-01-26 22:13:17 +01:00
|
|
|
"version": "0.9.",
|
2020-08-03 09:30:48 +02:00
|
|
|
"description": "GNU Taler Wallet browser extension",
|
|
|
|
"main": "./build/index.js",
|
|
|
|
"types": "./build/index.d.ts",
|
2023-02-16 02:49:27 +01:00
|
|
|
"type": "module",
|
2020-08-03 09:30:48 +02:00
|
|
|
"author": "Florian Dold",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"private": false,
|
|
|
|
"scripts": {
|
2020-08-10 18:49:23 +02:00
|
|
|
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
|
2022-12-15 21:11:24 +01:00
|
|
|
"test": "pnpm compile && mocha --require source-map-support/register 'dist/**/*.test.js' 'dist/**/test.js'",
|
2022-01-04 21:06:17 +01:00
|
|
|
"test:coverage": "nyc pnpm test",
|
2022-03-29 17:32:37 +02:00
|
|
|
"compile": "tsc && ./build-fast-with-linaria.mjs",
|
2022-06-01 16:40:20 +02:00
|
|
|
"prepare": "pnpm compile",
|
2022-04-26 03:37:41 +02:00
|
|
|
"dev": "./dev.mjs",
|
2021-11-15 15:18:58 +01:00
|
|
|
"pretty": "prettier --write src",
|
2022-02-15 17:45:26 +01:00
|
|
|
"i18n:extract": "pogen extract",
|
2022-02-24 16:41:47 +01:00
|
|
|
"i18n:merge": "pogen merge",
|
2022-03-01 17:37:21 +01:00
|
|
|
"i18n:emit": "pogen emit",
|
|
|
|
"i18n": "pnpm i18n:extract && pnpm i18n:merge && pnpm i18n:emit"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-03-27 14:35:58 +01:00
|
|
|
"@gnu-taler/taler-util": "workspace:*",
|
2021-05-07 15:38:28 +02:00
|
|
|
"@gnu-taler/taler-wallet-core": "workspace:*",
|
2022-09-05 16:20:01 +02:00
|
|
|
"date-fns": "^2.29.2",
|
2021-08-23 21:51:49 +02:00
|
|
|
"history": "4.10.1",
|
2023-01-31 14:21:08 +01:00
|
|
|
"jsqr": "^1.4.0",
|
2022-12-06 15:28:56 +01:00
|
|
|
"preact": "10.11.3",
|
2022-01-19 04:20:51 +01:00
|
|
|
"preact-router": "3.2.1",
|
2021-09-17 20:48:33 +02:00
|
|
|
"qrcode-generator": "^1.4.4",
|
2022-12-06 15:28:56 +01:00
|
|
|
"tslib": "^2.4.0"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
2022-06-06 17:05:26 +02:00
|
|
|
"eslintConfig": {
|
|
|
|
"plugins": [
|
|
|
|
"header"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"header/header": [
|
|
|
|
2,
|
|
|
|
"copyleft-header.js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2020-08-03 09:30:48 +02:00
|
|
|
"devDependencies": {
|
2022-10-25 20:02:00 +02:00
|
|
|
"@babel/core": "7.18.9",
|
|
|
|
"@babel/plugin-transform-modules-commonjs": "7.18.6",
|
|
|
|
"@babel/plugin-transform-react-jsx-source": "7.18.6",
|
2023-02-16 02:49:27 +01:00
|
|
|
"@babel/plugin-transform-typescript": "^7.20.13",
|
2022-10-25 20:02:00 +02:00
|
|
|
"@babel/preset-typescript": "7.18.6",
|
2022-11-07 14:04:19 +01:00
|
|
|
"@babel/runtime": "7.18.9",
|
2022-03-09 18:00:02 +01:00
|
|
|
"@gnu-taler/pogen": "workspace:*",
|
2022-12-23 12:59:29 +01:00
|
|
|
"@gnu-taler/web-util": "workspace:*",
|
2022-10-25 20:02:00 +02:00
|
|
|
"@linaria/babel-preset": "3.0.0-beta.22",
|
|
|
|
"@linaria/core": "3.0.0-beta.22",
|
|
|
|
"@linaria/react": "3.0.0-beta.22",
|
|
|
|
"@linaria/webpack-loader": "3.0.0-beta.22",
|
2022-03-18 21:52:46 +01:00
|
|
|
"@types/chai": "^4.3.0",
|
2022-10-13 14:24:20 +02:00
|
|
|
"@types/chrome": "0.0.197",
|
2021-05-07 23:10:27 +02:00
|
|
|
"@types/history": "^4.7.8",
|
2022-01-04 21:06:17 +01:00
|
|
|
"@types/mocha": "^9.0.0",
|
2022-12-23 12:59:29 +01:00
|
|
|
"@types/node": "^18.11.17",
|
2022-02-10 20:27:17 +01:00
|
|
|
"babel-loader": "^8.2.3",
|
2021-05-07 15:38:28 +02:00
|
|
|
"babel-plugin-transform-react-jsx": "^6.24.1",
|
2022-03-18 21:52:46 +01:00
|
|
|
"chai": "^4.3.6",
|
2023-02-10 19:57:48 +01:00
|
|
|
"esbuild": "^0.17.7",
|
2022-02-10 20:27:17 +01:00
|
|
|
"mocha": "^9.2.0",
|
2022-01-04 21:06:17 +01:00
|
|
|
"nyc": "^15.1.0",
|
2022-03-18 21:52:46 +01:00
|
|
|
"polished": "^4.1.4",
|
2022-02-10 20:27:17 +01:00
|
|
|
"preact-cli": "^3.3.5",
|
2021-05-07 15:38:28 +02:00
|
|
|
"preact-render-to-string": "^5.1.19",
|
2020-08-10 18:49:23 +02:00
|
|
|
"rimraf": "^3.0.2",
|
2023-01-09 12:38:48 +01:00
|
|
|
"typescript": "4.9.4"
|
2021-05-07 15:38:28 +02:00
|
|
|
},
|
2022-01-04 21:06:17 +01:00
|
|
|
"nyc": {
|
|
|
|
"include": [
|
|
|
|
"**"
|
2021-05-07 15:38:28 +02:00
|
|
|
],
|
2022-01-04 21:06:17 +01:00
|
|
|
"exclude": []
|
2022-02-15 17:45:26 +01:00
|
|
|
},
|
|
|
|
"pogen": {
|
|
|
|
"domain": "taler-wallet-webex"
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|
2022-12-15 21:11:24 +01:00
|
|
|
}
|