forked from openblockcc/openblock-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.67 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.67 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
{
"name": "openblock-link-desktop",
"productName": "Openblock Link",
"version": "1.0.0",
"description": "OpenBlock link desktop",
"main": "src/index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps && npm run cpdevice && npm run cpext && npm run cptools",
"cpdevice": "cpy ./ ../../../devices --parents --cwd=./node_modules/openblock-device/src",
"cpext": "cpy ./ ../../../extensions --parents --cwd=./node_modules/openblock-extension/src",
"cptools": "cpy ./ ../../../tools --parents --cwd=./node_modules/openblock-link/tools",
"start": "electron .",
"build": "npm run build:pack",
"build:pack": "electron-builder --dir",
"build:dist": "npm run cpdevice && npm run cpext && npm run cptools && electron-builder",
"clean": "rimraf dist devices extensions tools",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openblockcc/openblock-link-desktop.git"
},
"keywords": [
"openblock",
"link",
"scratch3.0",
"desktop"
],
"author": "OpenBlock Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/openblockcc/openblock-link-desktop/issues"
},
"homepage": "https://github.com/openblockcc/openblock-link-desktop#readme",
"dependencies": {
"compare-versions": "^3.6.0",
"del": "^6.0.0",
"openblock-device": "0.1.0-prerelease.20210328115506",
"openblock-extension": "0.1.0-prerelease.20210329032033",
"openblock-link": "0.1.0-prerelease.20210326122102"
},
"devDependencies": {
"cpy-cli": "^3.1.1",
"electron": "^8.5.5",
"electron-builder": "^22.9.1",
"rimraf": "^3.0.2"
}
}