lila/ui/palantir/package.json

33 lines
785 B
JSON
Raw Permalink Normal View History

2019-08-02 17:03:49 -06:00
{
"name": "palantir",
2019-09-17 15:09:06 -06:00
"version": "2.0.0",
"private": true,
2019-08-02 17:03:49 -06:00
"description": "lichess.org webrtc media calls",
2021-09-06 18:09:41 -06:00
"type": "module",
"module": "dist/main.js",
"types": "dist/main.d.ts",
2019-08-02 17:03:49 -06:00
"keywords": [
"chess",
"lichess",
"webrtc"
],
"author": "Thibault Duplessis",
2020-06-28 14:00:15 -06:00
"license": "AGPL-3.0-or-later",
2019-08-02 17:03:49 -06:00
"devDependencies": {
2020-07-01 02:33:02 -06:00
"@build/rollupProject": "2.0.0",
"@types/lichess": "2.0.0",
"@types/web": "=0.0.32",
"rollup": "^2.56.2",
"typescript": "^4.4.3"
2019-08-02 17:03:49 -06:00
},
"dependencies": {
2021-09-06 18:09:41 -06:00
"@types/webrtc": "^0.0.27",
"snabbdom": "^3.0.1"
2020-06-28 13:53:50 -06:00
},
"scripts": {
2021-09-06 18:09:41 -06:00
"compile": "tsc --incremental --declaration",
"dev": "$npm_execpath run compile && rollup --config",
"prod": "$npm_execpath run compile && rollup --config --config-prod"
2019-08-02 17:03:49 -06:00
}
}