forked from arzyu/capacitor-sync-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@capacitor-trancee/sync-version",
"version": "1.1.1",
"description": "Syncing version from package.json to target platform in the capacitor projects.",
"bin": {
"capacitor-sync-version": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist # rm -rf dist",
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"prepare": "npm run build"
},
"dependencies": {
"await-to-js": "^3.0.0",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"load-json-file": "^6.2.0",
"plist": "^3.1.0",
"properties-reader": "^2.3.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/node": "^14.18.63",
"@types/plist": "^3.0.5",
"@types/properties-reader": "^2.1.3",
"@types/semver": "^7.5.8",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trancee/capacitor-sync-version.git"
},
"license": "MIT"
}