-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.04 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.04 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
{
"name": "wordlock",
"version": "1.0.0",
"description": "WordLock - Wordle with a strategic twist",
"main": "index.html",
"scripts": {
"start": "python3 -m http.server 8000",
"copy": "cp index.html styles.css words.js manifest.json sw.js www/ && cp -r icons js www/ 2>/dev/null || true",
"sync": "node node_modules/@capacitor/cli/bin/capacitor sync",
"sync:android": "node node_modules/@capacitor/cli/bin/capacitor sync android",
"open:android": "node node_modules/@capacitor/cli/bin/capacitor open android",
"build": "npm run copy && npm run sync",
"build:android": "npm run copy && npm run sync:android && npm run open:android",
"cap": "node node_modules/@capacitor/cli/bin/capacitor"
},
"keywords": [
"wordle",
"word-game",
"puzzle",
"pwa"
],
"author": "mimhoff",
"license": "MIT",
"dependencies": {
"@capacitor-community/admob": "^7.2.0",
"@capacitor/android": "^6.2.1",
"@capacitor/cli": "^6.2.1",
"@capacitor/core": "^6.2.1",
"@capacitor/preferences": "^6.0.4"
}
}