-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.28 KB
/
package.json
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
41
{
"name": "noice-cast-receiver-app",
"description": "Chromecast Receiver application for the Noice Android app",
"repository": "[email protected]:trynoice/chromecast-receiver-app.git",
"author": "Ashutosh Gangwar <[email protected]>",
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"build": "parcel build src/index.html src/robots.txt",
"check": "tsc --noEmit",
"clean": "rm -rf coverage dist .parcel-cache",
"dev": "parcel src/index.html src/robots.txt",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"devDependencies": {
"@parcel/optimizer-data-url": "^2.12.0",
"@parcel/transformer-inline-string": "^2.12.0",
"@tsconfig/recommended": "^1.0.7",
"@types/chromecast-caf-receiver": "^6.0.17",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@trynoice/january": "github:trynoice/january#main",
"async-mutex": "^0.5.0",
"normalize.css": "^8.0.1"
},
"browserslist": [
"Chrome >=60"
]
}