-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.83 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.83 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
{
"name": "org.webosbrew.hyperion.ng.loader",
"version": "0.1.11",
"description": "Hyperion.NG loader",
"main": "frontend/index.js",
"moduledir": "frontend",
"scripts": {
"build": "enyo pack",
"build-service": "mkdir -p ./dist/service && rm -rf ./dist/service/* && mkdir -p ./service/build && cd service/build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make && cd ../.. && cp -r ./service/build/dist/* ./dist/service/",
"package": "ares-package dist/ -e enyo-ilib",
"deploy": "ares-install org.webosbrew.hyperion.ng.loader_${npm_package_version}_all.ipk",
"launch": "ares-launch org.webosbrew.hyperion.ng.loader",
"clean": "rm -rf dist/ service/build/",
"lint": "eslint .",
"build-local": "npm-run-all --serial build-local:**",
"build-local:frontend": "enyo pack",
"build-local:service": "mkdir -p ./service/build && cd service/build && cmake .. && make && cd ../..",
"build-local:package": "ares-package dist/ -e enyo-ilib",
"build-and-launch": "npm-run-all --serial build-local deploy launch",
"gen-manifest": "webosbrew-gen-manifest -a appinfo.json -p org.webosbrew.hyperion.ng.loader_${npm_package_version}_all.ipk -o org.webosbrew.hyperion.ng.loader.manifest.json --icon https://github.com/webosbrew/hyperion.ng-webos-loader/raw/master/assets/logo_big.png --link https://github.com/webosbrew/hyperion.ng-webos-loader --root true",
"version": "node tools/sync-version.js && git add appinfo.json"
},
"assets": [
"appinfo.json",
"assets/**"
],
"author": "webosbrew.org",
"license": "UNLICENSED",
"devDependencies": {
"@webosbrew/pub-utils": "^1.1.0",
"@webosose/ares-cli": "^2.4.0",
"enyo-dev": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8"
}
}