-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
148 lines (148 loc) · 3.68 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "ubports-installer",
"version": "0.10.0",
"description": "The easy way to install Ubuntu Touch on UBports devices. A friendly cross-platform Installer for Ubuntu Touch. Just connect a supported device to your PC, follow the on-screen instructions and watch this awesome tool do all the rest.",
"keywords": [
"Ubuntu",
"Ubuntu Touch",
"UBports",
"UBports Installer",
"Android",
"ADB",
"Fastboot",
"Heimdall"
],
"homepage": "https://devices.ubuntu-touch.io",
"bugs": {
"url": "https://github.com/ubports/ubports-installer/issues",
"email": "[email protected]"
},
"repository": "https://github.com/ubports/ubports-installer",
"author": "Johannah Sprinz <[email protected]>",
"license": "GPL-3.0",
"main": "src/main.js",
"bin": {
"ubports-installer": "src/main.js"
},
"scripts": {
"build": "npx rollup -c",
"start": "./start.sh",
"lint": "npx prettier \"**/!(*.min.*)\" --ignore-path=.gitignore --arrow-parens=avoid --trailing-comma=none -uw",
"docs": "npx jsdoc -c jsdoc-config.json",
"diagram": "npx arkit -f src/main.js",
"test": "npx jest --coverage"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"arkit": "^1.6.4",
"electron": "^24.8.5",
"electron-builder": "^24.13.3",
"electron-packager": "^17.1.1",
"electron-reload": "^1.5.0",
"jest": "^29.2.2",
"jsdoc": "^4.0.2",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"rollup": "^3.17.3",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.3",
"svelte": "^3.55.1",
"svelte-spa-router": "^3.3.0"
},
"dependencies": {
"7zip-min": "^1.4.4",
"axios": "^1.6.0",
"bootstrap": "^5.2.3",
"cancelable-promise": "^4.3.1",
"commander": "^10.0.0",
"electron-open-link-in-browser": "^1.0.2",
"electron-store": "^8.1.0",
"form-data": "^4.0.0",
"fs-extra": "^11.1.0",
"graphql": "^16.8.1",
"open-cuts-reporter": "^1.0.2",
"progressive-downloader": "1.0.8",
"promise-android-tools": "^4.0.13",
"ps-tree": "^1.2.0",
"semver": "^7.3.8",
"sudo-prompt": "^9.2.1",
"svelte-markdown": "^0.2.3",
"sveltestrap": "^5.10.0",
"systeminformation": "^5.21.7",
"winston": "^3.8.2",
"yaml": "^2.2.2"
},
"arkit": {
"$schema": "https://arkit.pro/schema.json",
"excludePatterns": [
"__mocks__",
"**/*.spec.*",
"src/core/plugins/plugin.js"
],
"components": [
{
"type": "Lib",
"patterns": [
"src/lib/**/*.js"
]
},
{
"type": "Core",
"patterns": [
"src/core/**/*.js"
]
},
{
"type": "Plugins",
"patterns": [
"src/core/plugins/**/*.js"
]
},
{
"type": "Component",
"patterns": [
"src/**/*.js"
]
}
],
"output": [
{
"direction": "horizontal",
"path": [
"dist/arkit.svg",
"dist/arkit.png"
],
"groups": [
{
"first": true,
"components": [
"Component"
]
},
{
"type": "Lib",
"components": [
"Lib"
]
},
{
"type": "Core",
"components": [
"Core"
]
},
{
"type": "Dependencies",
"components": [
"Dependency"
]
}
]
}
]
}
}