wallet-core/packages/web-util/package.json

69 lines
1.9 KiB
JSON
Raw Normal View History

2022-12-06 13:21:17 +01:00
{
"name": "@gnu-taler/web-util",
2023-07-07 14:23:45 +02:00
"version": "0.9.3-dev.17",
2022-12-06 13:21:17 +01:00
"description": "Generic helper functionality for GNU Taler Web Apps",
"type": "module",
"types": "./lib/index.node.d.ts",
"main": "./dist/taler-web-cli.cjs",
"author": "Sebastian Marchano",
"license": "AGPL-3.0-or-later",
"private": false,
"exports": {
2023-05-05 13:34:21 +02:00
"./browser": {
2023-02-16 03:23:42 +01:00
"types": "./lib/index.browser.js",
"default": "./lib/index.browser.mjs"
},
2023-05-05 13:34:21 +02:00
"./build": {
2023-04-24 15:56:45 +02:00
"types": "./lib/index.build.js",
"default": "./lib/index.build.mjs"
},
2023-05-05 13:34:21 +02:00
"./node": {
2023-02-16 03:23:42 +01:00
"types": "./lib/index.node.js",
"default": "./lib/index.node.cjs"
2023-05-05 13:34:21 +02:00
},
"./testing": {
"types": "./lib/index.testing.js",
"default": "./lib/index.testing.mjs"
2023-02-16 03:23:42 +01:00
}
2022-12-06 13:21:17 +01:00
},
"scripts": {
2022-12-06 19:28:06 +01:00
"compile": "tsc && ./build.mjs",
2022-12-06 13:21:17 +01:00
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"devDependencies": {
2023-05-30 19:33:15 +02:00
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
2022-12-06 13:21:17 +01:00
"@gnu-taler/taler-util": "workspace:*",
2023-05-30 19:33:15 +02:00
"@linaria/babel-preset": "4.4.5",
"@linaria/core": "4.2.10",
"@linaria/esbuild": "4.2.11",
"@linaria/react": "4.3.8",
2022-12-06 13:21:17 +01:00
"@types/express": "^4.17.14",
"@types/node": "^18.11.17",
2022-12-06 13:21:17 +01:00
"@types/web": "^0.0.82",
"@types/ws": "^8.5.3",
2023-05-05 13:34:21 +02:00
"autoprefixer": "^10.4.14",
2023-01-04 12:14:51 +01:00
"axios": "^1.2.2",
2022-12-06 13:21:17 +01:00
"chokidar": "^3.5.3",
"esbuild": "^0.17.7",
2022-12-06 13:21:17 +01:00
"express": "^4.18.2",
2023-05-05 13:34:21 +02:00
"postcss": "^8.4.23",
"postcss-load-config": "^4.0.1",
2022-12-06 13:21:17 +01:00
"preact": "10.11.3",
"preact-render-to-string": "^5.2.6",
"prettier": "^2.8.8",
2022-12-06 13:21:17 +01:00
"rimraf": "^3.0.2",
2023-05-05 13:34:21 +02:00
"sass": "1.56.1",
2023-02-08 21:36:26 +01:00
"swr": "2.0.3",
2023-06-06 11:54:37 +02:00
"tslib": "^2.5.3",
"typescript": "^5.1.3",
2022-12-06 13:21:17 +01:00
"ws": "7.4.5"
2023-04-17 16:44:22 +02:00
},
"dependencies": {
2023-05-05 13:34:21 +02:00
"@babel/core": "7.18.9",
"@babel/helper-compilation-targets": "7.18.9",
"@types/chrome": "0.0.197",
"tailwindcss": "^3.3.2"
2022-12-06 13:21:17 +01:00
}
2023-05-08 09:37:39 +02:00
}