-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.97 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
{
"name": "moddable-avatar",
"version": "0.1.0",
"description": "Yet another fun avatar face module for Moddable SDK.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/** --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"clean": "rimraf ./build",
"build": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig",
"debug:linux": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig -d -m -p lin",
"debug:m5stack": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig -d -m -p esp32/m5stack",
"debug:m5stack_core2": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig -d -m -p esp32/m5stack_core2",
"deploy:linux": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig -m -p lin",
"deploy:m5stack": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig -m -p esp32/m5stack",
"deploy:m5stack_core2": "npm run clean && tsc && cp -r assets manifest.json build/ && cd build && mcconfig -m -p esp32/m5stack_core2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/meganetaaan/moddable-avatar.git"
},
"keywords": [
"m5stack",
"moddable",
"avatar"
],
"author": "Shinya Ishikawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/meganetaaan/moddable-avatar/issues"
},
"homepage": "https://github.com/meganetaaan/moddable-avatar#readme",
"private": true,
"devDependencies": {
"@meganetaaan/types-moddable": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"rimraf": "^2.7.1",
"sucrase": "^3.12.1",
"typescript": "^3.7.5"
}
}