2022-12-06 13:21:17 +01:00
|
|
|
{
|
|
|
|
"name": "@gnu-taler/web-util",
|
2023-09-27 09:22:42 +02:00
|
|
|
"version": "0.9.3-dev.27",
|
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",
|
2023-09-12 21:18:21 +02:00
|
|
|
"clean": "rm -rf dist lib tsconfig.tsbuildinfo",
|
2022-12-06 13:21:17 +01:00
|
|
|
"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-09-20 20:16:28 +02:00
|
|
|
"@heroicons/react": "^2.0.17",
|
|
|
|
"date-fns": "2.29.3",
|
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",
|
2022-12-23 12:59:29 +01:00
|
|
|
"@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",
|
2022-12-06 13:21:17 +01:00
|
|
|
"chokidar": "^3.5.3",
|
2023-02-10 19:57:48 +01:00
|
|
|
"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",
|
2022-12-12 14:57:14 +01:00
|
|
|
"preact-render-to-string": "^5.2.6",
|
2023-06-05 13:33:14 +02:00
|
|
|
"prettier": "^2.8.8",
|
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",
|
2023-09-06 13:24:34 +02:00
|
|
|
"typescript": "^5.2.2",
|
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
|
|
|
}
|