generated from capacitor-community/.github
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
84 lines (84 loc) · 2.96 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@capacitor-community/electron",
"version": "5.0.1",
"description": "Capacitor community support for the Electron platform!",
"main": "dist/core/index.js",
"typings": "dist/core/index.d.ts",
"scripts": {
"lint": "pnpm eslint . --ext ts && pnpm prettier \"./**/*.{css,html,ts,js,java}\" --check",
"fmt": "pnpm eslint . --ext ts --fix && pnpm prettier \"./**/*.{css,html,ts,js,java}\" --write",
"clean": "rimraf ./dist && rimraf ./template.tar.gz",
"build": "pnpm run clean && pnpm run fmt && pnpm run build-platform && pnpm run build-platform-types",
"capacitor:add": "node dist/cli-scripts/cap-scripts.js add",
"capacitor:copy": "node dist/cli-scripts/cap-scripts.js copy",
"capacitor:update": "node dist/cli-scripts/cap-scripts.js update",
"capacitor:sync": "node dist/cli-scripts/cap-scripts.js sync",
"capacitor:open": "node dist/cli-scripts/cap-scripts.js open",
"build-platform": "node ./build.js",
"build-platform-types": "tsc ./src/electron-platform/index.ts --outDir ./dist/core --declaration --emitDeclarationOnly --esModuleInterop",
"shipit": "pnpm semantic-release && npm publish --tag latest --provenance",
"shipit-next": "pnpm semantic-release && npm publish --tag next --provenance",
"commit": "git add . && pnpm git-cz && git push"
},
"license": "MIT",
"author": "IT-MikeS",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^11.0.1",
"@types/events": "^3.0.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.16.8",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"electron": "^26.2.2",
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"is-ci": "^3.0.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"semantic-release": "^21.0.2",
"tar": "^6.1.14",
"typescript": "^5.0.4"
},
"dependencies": {
"@capacitor/cli": ">=5.4.0",
"@capacitor/core": ">=5.4.0",
"@ionic/utils-fs": "~3.1.6",
"chalk": "^4.1.2",
"electron-is-dev": "~2.0.0",
"events": "~3.3.0",
"fs-extra": "~11.1.1",
"keyv": "^4.5.2",
"mime-types": "~2.1.35",
"ora": "^5.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/electron"
},
"bugs": {
"url": "https://github.com/capacitor-community/electron/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}