74 lines
2.2 KiB
JSON
74 lines
2.2 KiB
JSON
{
|
|
"name": "@gnu-taler/taler-wallet-webextension",
|
|
"version": "0.9.0-dev.1",
|
|
"description": "GNU Taler Wallet browser extension",
|
|
"main": "./build/index.js",
|
|
"types": "./build/index.d.ts",
|
|
"author": "Florian Dold",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": false,
|
|
"scripts": {
|
|
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
|
|
"test": "pnpm compile && mocha --enable-source-maps 'dist/**/*.test.js'",
|
|
"test:coverage": "nyc pnpm test",
|
|
"compile": "tsc && ./build-fast-with-linaria.mjs",
|
|
"dev": "./dev.mjs",
|
|
"compile:test": "rollup -c rollup.config.test.js -m",
|
|
"prepare": "rollup -c -m",
|
|
"pretty": "prettier --write src",
|
|
"i18n:extract": "pogen extract",
|
|
"i18n:merge": "pogen merge",
|
|
"i18n:emit": "pogen emit",
|
|
"i18n": "pnpm i18n:extract && pnpm i18n:merge && pnpm i18n:emit"
|
|
},
|
|
"dependencies": {
|
|
"@gnu-taler/taler-util": "workspace:*",
|
|
"@gnu-taler/taler-wallet-core": "workspace:*",
|
|
"date-fns": "^2.28.0",
|
|
"history": "4.10.1",
|
|
"preact": "^10.6.5",
|
|
"preact-router": "3.2.1",
|
|
"qrcode-generator": "^1.4.4",
|
|
"tslib": "^2.3.1",
|
|
"ws": "7.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.13.16",
|
|
"@babel/plugin-transform-react-jsx-source": "^7.12.13",
|
|
"@babel/preset-typescript": "^7.13.0",
|
|
"@babel/runtime": "^7.17.8",
|
|
"@gnu-taler/pogen": "workspace:*",
|
|
"@linaria/babel-preset": "3.0.0-beta.4",
|
|
"@linaria/core": "3.0.0-beta.4",
|
|
"@linaria/react": "3.0.0-beta.4",
|
|
"@linaria/webpack-loader": "3.0.0-beta.4",
|
|
"@testing-library/preact": "^2.0.1",
|
|
"@testing-library/preact-hooks": "^1.1.0",
|
|
"@types/chai": "^4.3.0",
|
|
"@types/chrome": "0.0.176",
|
|
"@types/history": "^4.7.8",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^17.0.8",
|
|
"babel-loader": "^8.2.3",
|
|
"babel-plugin-transform-react-jsx": "^6.24.1",
|
|
"chai": "^4.3.6",
|
|
"chokidar": "^3.5.3",
|
|
"mocha": "^9.2.0",
|
|
"nyc": "^15.1.0",
|
|
"polished": "^4.1.4",
|
|
"preact-cli": "^3.3.5",
|
|
"preact-render-to-string": "^5.1.19",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"**"
|
|
],
|
|
"exclude": []
|
|
},
|
|
"pogen": {
|
|
"domain": "taler-wallet-webex"
|
|
}
|
|
}
|