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

52 lines
1.6 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",
2020-08-27 14:22:38 +05:30
"version": "0.0.33",
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",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
2020-03-14 03:24:11 +05:30
"test": "node_modules/.bin/impunity --entry-point src/main.js --force-esm",
"start": "node scripts/serve-local.js",
"build": "node --experimental-modules scripts/build.mjs"
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": {
2020-08-05 22:04:41 +05:30
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.1.0",
2020-08-19 15:09:04 +05:30
"@rollup/plugin-commonjs": "^15.0.0",
2020-08-19 15:09:48 +05:30
"@rollup/plugin-multi-entry": "^4.0.0",
2020-08-19 15:08:07 +05:30
"@rollup/plugin-node-resolve": "^9.0.0",
2020-08-06 15:08:38 +05:30
"cheerio": "^1.0.0-rc.3",
2020-08-13 22:29:31 +05:30
"commander": "^6.0.0",
2020-08-05 22:04:41 +05:30
"core-js": "^3.6.5",
2020-08-06 15:08:38 +05:30
"finalhandler": "^1.1.1",
"impunity": "^0.0.11",
"mdn-polyfills": "^5.20.0",
2020-08-19 15:10:17 +05:30
"postcss": "^7.0.32",
"postcss-css-variables": "^0.17.0",
"postcss-flexbugs-fixes": "^4.2.1",
2020-08-06 15:08:38 +05:30
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
2020-08-06 15:08:38 +05:30
"regenerator-runtime": "^0.13.7",
"rollup": "^2.26.4",
"rollup-plugin-cleanup": "^3.1.1",
2020-08-13 22:29:31 +05:30
"serve-static": "^1.13.2",
"xxhash": "^0.3.0"
2020-08-26 18:19:16 +05:30
},
"dependencies": {
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.4.tgz"
}
2019-02-11 01:55:29 +05:30
}