forked from capacitor-community/electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.33 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
{
"name": "@capacitor-community/electron",
"version": "3.0.2",
"description": "Capacitor community support for the Electron platform.",
"main": "dist/core/index.js",
"typings": "dist/core/index.d.ts",
"scripts": {
"shipit": "npm run build && np --no-tests --any-branch && npm run generate-changelog && npm run deploy-changelog",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build-platform && npm run build-runtime && npm run build-cli-scripts",
"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-cli-scripts": "tsc --project ./tsconfig.cli-scripts.json && parcel build ./build/index.js --out-dir ./dist/cli-scripts --out-file cap-scripts.js --target node --no-source-maps && rimraf ./build",
"build-platform": "tsc --project ./tsconfig.electron.json",
"build-runtime": "tsc --project ./tsconfig.runtime.json",
"generate-changelog": "conventional-changelog -o CHANGELOG.md -r 0 --config changelog.config.js",
"deploy-changelog": "bash ./deployChangeLog.sh",
"prepare": "husky install",
"pretty-quick": "pretty-quick"
},
"license": "MIT",
"author": "IT-MikeS",
"devDependencies": {
"@types/events": "~3.0.0",
"@types/fs-extra": "~9.0.11",
"@types/node": "~14.14.41",
"conventional-changelog-cli": "~2.1.1",
"conventional-changelog-conventionalcommits": "~4.5.0",
"electron": "~13.1.3",
"husky": "~6.0.0",
"np": "~7.5.0",
"parcel-bundler": "~1.12.5",
"prettier": "~2.3.1",
"pretty-quick": "~3.1.1",
"rimraf": "~3.0.2",
"tslib": "~2.3.0",
"typescript": "~4.3.4"
},
"dependencies": {
"@capacitor/cli": "^3.0.0",
"@capacitor/core": "^3.0.0",
"@ionic/utils-fs": "~3.1.5",
"chalk": "~4.1.1",
"electron-is-dev": "~2.0.0",
"electron-serve": "~1.1.0",
"events": "~3.3.0",
"fs-extra": "~9.1.0",
"mime-types": "~2.1.30",
"ora": "~5.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/electron"
},
"bugs": {
"url": "https://github.com/capacitor-community/electron/issues"
}
}