forked from caprockapps/capacitor-chromecast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@flalal/capacitor-chromecast",
"version": "1.0.0",
"description": "Capacitor plugin for Chromecast (Android). Forked from @caprockapps/capacitor-chromecast.",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/src/main/",
"android/build.gradle",
"dist/"
],
"author": "Florian (forked from Dimitar Todorov)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Flalal/capacitor-chromecast.git"
},
"bugs": {
"url": "https://github.com/Flalal/capacitor-chromecast/issues"
},
"keywords": [
"capacitor",
"plugin",
"chromecast",
"cast",
"native"
],
"scripts": {
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"lint": "npm run eslint && npm run prettier -- --check",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"build": "npm run clean && tsc && rollup -c rollup.config.js",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@capacitor/cli": "^6.2.0",
"eslint": "^9.25.1",
"prettier": "~2.2.0",
"prettier-plugin-java": "~1.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"typescript": "^5.2.2"
},
"capacitor": {
"android": {
"src": "android"
}
},
"peerDependencies": {
"@capacitor/core": "^6.0.0"
},
"dependencies": {
"@capacitor/core": "^6.2.0"
}
}