2019-02-10 21:25:29 +01:00
|
|
|
{
|
2020-08-05 19:09:58 +02:00
|
|
|
"name": "hydrogen-web",
|
2021-11-26 09:12:08 +01:00
|
|
|
"version": "0.2.22",
|
2019-02-10 21:25:29 +01:00
|
|
|
"description": "A javascript matrix client prototype, trying to minize RAM usage by offloading as much as possible to IndexedDB",
|
2021-10-01 11:30:42 +02:00
|
|
|
"main": "src/lib.ts",
|
2019-02-10 21:25:29 +01:00
|
|
|
"directories": {
|
|
|
|
"doc": "doc"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-05-20 11:11:57 +02:00
|
|
|
"lint": "eslint --cache src/",
|
2021-08-18 17:20:31 +02:00
|
|
|
"lint-ts": "eslint src/ -c .ts-eslintrc.js --ext .ts",
|
2021-05-20 11:11:57 +02:00
|
|
|
"lint-ci": "eslint src/",
|
2021-11-19 10:23:18 +01:00
|
|
|
"test": "impunity --entry-point src/main.js src/platform/web/Platform.js --force-esm-dirs lib/ src/",
|
2021-08-06 22:05:40 +02:00
|
|
|
"start": "snowpack dev --port 3000",
|
2020-08-27 18:45:54 +02:00
|
|
|
"build": "node --experimental-modules scripts/build.mjs",
|
2021-03-08 14:40:21 +01:00
|
|
|
"postinstall": "node ./scripts/post-install.js"
|
2019-02-10 21:25:29 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-08-05 19:09:58 +02:00
|
|
|
"url": "git@github.com:vector-im/hydrogen-web.git"
|
2019-02-10 21:25:29 +01:00
|
|
|
},
|
2020-08-05 19:08:11 +02:00
|
|
|
"author": "matrix.org",
|
2020-08-05 18:45:00 +02:00
|
|
|
"license": "Apache-2.0",
|
2019-02-10 21:25:29 +01:00
|
|
|
"bugs": {
|
2020-08-05 19:09:58 +02:00
|
|
|
"url": "https://github.com/vector-im/hydrogen-web/issues"
|
2019-02-10 21:25:29 +01:00
|
|
|
},
|
2020-08-05 19:09:58 +02:00
|
|
|
"homepage": "https://github.com/vector-im/hydrogen-web/#readme",
|
2019-02-16 00:22:47 +01:00
|
|
|
"devDependencies": {
|
2020-08-05 18:34:41 +02:00
|
|
|
"@babel/core": "^7.11.1",
|
|
|
|
"@babel/preset-env": "^7.11.0",
|
|
|
|
"@rollup/plugin-babel": "^5.1.0",
|
2021-05-12 18:33:05 +02:00
|
|
|
"@rollup/plugin-multi-entry": "^4.0.0",
|
2021-08-18 17:20:31 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.29.2",
|
|
|
|
"@typescript-eslint/parser": "^4.29.2",
|
2021-05-31 13:06:11 +02:00
|
|
|
"autoprefixer": "^10.2.6",
|
2020-08-06 11:38:38 +02:00
|
|
|
"cheerio": "^1.0.0-rc.3",
|
2020-08-13 18:59:31 +02:00
|
|
|
"commander": "^6.0.0",
|
2020-08-05 18:34:41 +02:00
|
|
|
"core-js": "^3.6.5",
|
2021-08-18 17:20:31 +02:00
|
|
|
"eslint": "^7.32.0",
|
2021-06-02 12:32:03 +02:00
|
|
|
"fake-indexeddb": "^3.1.2",
|
2020-08-06 11:38:38 +02:00
|
|
|
"finalhandler": "^1.1.1",
|
2021-11-29 10:49:26 +01:00
|
|
|
"impunity": "^1.0.8",
|
2020-08-06 11:38:38 +02:00
|
|
|
"mdn-polyfills": "^5.20.0",
|
2020-10-08 14:17:43 +02:00
|
|
|
"postcss": "^8.1.1",
|
2020-08-07 19:15:53 +02:00
|
|
|
"postcss-css-variables": "^0.17.0",
|
|
|
|
"postcss-flexbugs-fixes": "^4.2.1",
|
2020-08-06 11:38:38 +02:00
|
|
|
"postcss-import": "^12.0.1",
|
2020-08-14 10:45:14 +02:00
|
|
|
"postcss-url": "^8.0.0",
|
2020-08-06 11:38:38 +02:00
|
|
|
"regenerator-runtime": "^0.13.7",
|
2020-08-18 11:47:20 +02:00
|
|
|
"rollup-plugin-cleanup": "^3.1.1",
|
2020-08-13 18:59:31 +02:00
|
|
|
"serve-static": "^1.13.2",
|
2021-08-06 21:15:23 +02:00
|
|
|
"snowpack": "^3.8.3",
|
|
|
|
"typescript": "^4.3.5",
|
2020-08-27 20:02:20 +02:00
|
|
|
"xxhashjs": "^0.2.2"
|
2020-08-26 14:49:16 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-07-07 04:10:36 +02:00
|
|
|
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.3.tgz",
|
2021-11-05 21:02:46 +01:00
|
|
|
"@rollup/plugin-commonjs": "^15.0.0",
|
|
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
2020-09-16 18:20:39 +02:00
|
|
|
"aes-js": "^3.1.2",
|
2020-08-27 18:45:54 +02:00
|
|
|
"another-json": "^0.2.0",
|
2020-09-17 17:55:35 +02:00
|
|
|
"base64-arraybuffer": "^0.2.0",
|
|
|
|
"bs58": "^4.0.1",
|
2021-07-12 23:46:42 +02:00
|
|
|
"dompurify": "^2.3.0",
|
2020-10-08 14:17:43 +02:00
|
|
|
"es6-promise": "https://github.com/bwindels/es6-promise.git#bwindels/expose-flush",
|
2021-11-29 10:49:26 +01:00
|
|
|
"node-html-parser": "^4.0.0",
|
2021-11-05 21:02:46 +01:00
|
|
|
"rollup": "^2.26.4",
|
|
|
|
"text-encoding": "^0.7.0"
|
2020-03-14 20:52:17 +01:00
|
|
|
}
|
2019-02-10 21:25:29 +01:00
|
|
|
}
|