-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.83 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.83 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
{
"name": "your-package-name",
"productName": "YOUR_APP_SHORT_NAME",
"version": "0.0.1",
"buildVersion": "0.0.1",
"description": "YOUR_APPLICATION_DESCRIPTON",
"private": "true",
"author": "YOUR_NAME <YOUR_EMAIL_ADDRESS> (https://github.com/YOUR_GITHUB_USER)",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/YOUR_GITHUB_USER/YOUR_GITHUB_REPO.git"
},
"bugs": {
"url": "https://github.com/YOUR_GITHUB_USER/YOUR_GITHUB_REPO/issues"
},
"homepage": "https://github.com/YOUR_GITHUB_USER/YOUR_GITHUB_REPO#readme",
"main": "dist/index.js",
"scripts": {
"cap-prepare": "yarn cap add ios && yarn cap sync ios && yarn cap add android && yarn cap sync android",
"cap-a": "cap sync android && cap open android",
"cap-i": "cap sync ios && cap open ios",
"clean": "rm -rf .gradle android dist ios node_modules yarn.lock && mkdir dist && cp index.html dist && yarn && yarn cap-prepare",
"build": "vite build",
"dev": "tsc -w & vite",
"redev": "yarn clean && yarn build && yarn dev",
"serve": "vite preview",
"build-a": "yarn build && yarn cap-a",
"build-i": "yarn build && yarn cap-i"
},
"devDependencies": {
"@capacitor/android": "latest",
"@capacitor/cli": "latest",
"@capacitor/core": "latest",
"@capacitor/ios": "latest",
"@types/node": "latest",
"@types/prettier": "latest",
"@rollup/plugin-alias": "latest",
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-replace": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-compat": "latest",
"eslint-plugin-prettier": "latest",
"phaser": "latest",
"prettier": "latest",
"typescript": "latest",
"vite": "latest"
}
}