This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/package.json

55 lines
1.8 KiB
JSON
Raw Normal View History

2019-02-11 01:55:29 +05:30
{
2020-08-05 22:39:58 +05:30
"name": "hydrogen-web",
2021-11-26 13:42:08 +05:30
"version": "0.2.22",
2019-02-11 01:55:29 +05:30
"description": "A javascript matrix client prototype, trying to minize RAM usage by offloading as much as possible to IndexedDB",
"directories": {
"doc": "doc"
},
"scripts": {
"lint": "eslint --cache src/",
"lint-ts": "eslint src/ -c .ts-eslintrc.js --ext .ts",
"lint-ci": "eslint src/",
2021-12-01 18:00:17 +05:30
"test": "impunity --entry-point src/platform/web/main.js src/platform/web/Platform.js --force-esm-dirs lib/ src/ --root-dir src/",
"start": "vite --port 3000",
"build": "vite build",
"build:sdk": "./scripts/sdk/build.sh"
2019-02-11 01:55:29 +05:30
},
"repository": {
"type": "git",
2020-08-05 22:39:58 +05:30
"url": "git@github.com:vector-im/hydrogen-web.git"
2019-02-11 01:55:29 +05:30
},
2020-08-05 22:38:11 +05:30
"author": "matrix.org",
2020-08-05 22:15:00 +05:30
"license": "Apache-2.0",
2019-02-11 01:55:29 +05:30
"bugs": {
2020-08-05 22:39:58 +05:30
"url": "https://github.com/vector-im/hydrogen-web/issues"
2019-02-11 01:55:29 +05:30
},
2020-08-05 22:39:58 +05:30
"homepage": "https://github.com/vector-im/hydrogen-web/#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"aes-js": "^3.1.2",
2020-08-05 22:04:41 +05:30
"core-js": "^3.6.5",
"es6-promise": "https://github.com/bwindels/es6-promise.git#bwindels/expose-flush",
"eslint": "^7.32.0",
"fake-indexeddb": "^3.1.2",
"impunity": "^1.0.9",
2020-08-06 15:08:38 +05:30
"mdn-polyfills": "^5.20.0",
"merge-options": "^3.0.4",
2021-12-01 22:15:33 +05:30
"node-html-parser": "^4.0.0",
"postcss-css-variables": "^0.18.0",
"postcss-flexbugs-fixes": "^5.0.2",
2020-08-06 15:08:38 +05:30
"regenerator-runtime": "^0.13.7",
"text-encoding": "^0.7.0",
"typescript": "^4.3.5",
"vite": "^2.6.14",
2021-12-01 22:15:33 +05:30
"xxhashjs": "^0.2.2"
},
"dependencies": {
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.3.tgz",
"another-json": "^0.2.0",
"base64-arraybuffer": "^0.2.0",
"bs58": "^4.0.1",
"dompurify": "^2.3.0"
}
2019-02-11 01:55:29 +05:30
}