summaryrefslogtreecommitdiff
path: root/packages/web-util/package.json
blob: 53cd326edbbec2b82e35cc26de82a7ec86673f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  "name": "@gnu-taler/web-util",
  "version": "0.9.0",
  "description": "Generic helper functionality for GNU Taler Web Apps",
  "type": "module",
  "types": "./lib/index.node.d.ts",
  "main": "./dist/taler-web-cli.cjs",
  "bin": {
    "taler-wallet-cli": "./bin/taler-web-cli.cjs"
  },
  "author": "Sebastian Marchano",
  "license": "AGPL-3.0-or-later",
  "private": false,
  "exports": {
    "./lib/index.browser": "./lib/index.browser.mjs",
    "./lib/index.node": "./lib/index.node.cjs"
  },
  "scripts": {
    "prepare": "tsc && ./build.js",
    "compile": "tsc && ./build.js",
    "clean": "rimraf dist lib tsconfig.tsbuildinfo",
    "pretty": "prettier --write src"
  },
  "devDependencies": {
    "@gnu-taler/taler-util": "workspace:*",
    "@types/express": "^4.17.14",
    "@types/node": "^18.11.9",
    "@types/web": "^0.0.82",
    "@types/ws": "^8.5.3",
    "chokidar": "^3.5.3",
    "esbuild": "^0.14.21",
    "express": "^4.18.2",
    "preact": "10.11.3",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "tslib": "^2.4.0",
    "typescript": "^4.8.4",
    "ws": "7.4.5"
  }
}