-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "io.donotnut",
"displayName": "donotnut",
"version": "1.0.0",
"description": "recreating the famous donut.c using TypeScript & Cordova but making it more kawaii",
"main": "www/js/index.js",
"scripts": {
"build:ts": "rm -rf www/js && tsc",
"build:apk": "./build.sh",
"build:web": "./web.sh",
"build": "npm run build:ts && npm run build:apk && npm run build:web",
"keystore": "./keystore.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier -w ."
},
"keywords": [
"ecosystem:cordova"
],
"author": "Baalateja Kataru",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"cordova-android": "^12.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"cordova": {
"platforms": [
"android"
]
}
}