-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.11 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "stack-chan",
"version": "2.1.1",
"description": "A firmware of M5Stack Stack-chan module",
"main": "stackchan/main.ts",
"scripts": {
"format": "prettier --check stackchan/{,**/}*.ts ./mods/**/*.js",
"format:fix": "prettier --write stackchan/{,**/}*.ts mods/**/*.js",
"lint": "eslint stackchan/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"generate-speech-coqui": "node scripts/generate-speech-coqui.js",
"generate-speech-voicevox": "node scripts/generate-speech-voicevox.js",
"generate-speech-google": "cross-env GOOGLE_APPLICATION_CREDENTIALS=scripts/key.json node scripts/generate-speech-google.js",
"generate-apidoc": "typedoc --entryPointStrategy expand --plugin typedoc-plugin-markdown --out docs/api ./stackchan",
"build": "cross-env npm_config_target?=esp32/m5stack cross-env-shell mcconfig -d -m -p \\$npm_config_target -t build ./stackchan/manifest_local.json",
"driver": "mcconfig -d -m -p esp32/m5stack_cores3 ./tests/drivers/dynamixel/manifest.json",
"serial": "mcconfig -d -m -p esp32/m5stack_cores3 ./tests/drivers/serial/manifest.json",
"bundle": "mcbundle -d -m ./stackchan/manifest.json",
"postbuild": "node -e \"fs.copyFileSync(process.env.MODDABLE + '/build/tmp/' + (process.env.npm_config_target || 'esp32/m5stack') + '/debug/stackchan/modules/tsconfig.json','tsconfig.json')\"",
"deploy": "cross-env npm_config_target?=esp32/m5stack cross-env-shell mcconfig -d -m -p \\$npm_config_target -t deploy ./stackchan/manifest_local.json",
"debug": "cross-env npm_config_target?=esp32/m5stack cross-env-shell mcconfig -d -m -p \\$npm_config_target ./stackchan/manifest_local.json",
"mod": "cross-env npm_config_target?=esp32/m5stack cross-env-shell mcrun -d -m -p $npm_config_target",
"setup": "xs-dev setup --target-branch 4.9.5",
"doctor": "echo stack-chan environment info: && git rev-parse HEAD && git rev-parse --show-toplevel && xs-dev doctor",
"scan": "xs-dev scan",
"erase-flash": "/home/ubuntu/.espressif/python_env/idf5.3_py3.12_env/bin/esptool.py erase_flash"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/meganetaaan/stack-chan.git"
},
"keywords": [
"M5Stack",
"Robot",
"Moddable",
"Kawaii"
],
"author": "RT Coporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rt-net/stack-chan/issues"
},
"homepage": "https://rt-net.jp/products/rt-stackchan",
"private": true,
"devDependencies": {
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.6",
"@google-cloud/text-to-speech": "^5.2.0",
"@microsoft/tsdoc": "^0.14.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"cross-env-default": "^5.1.3-1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"node-fetch": "^3.3.0",
"prettier": "^2.7.1",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.8.4",
"web-audio-engine": "^0.13.4",
"xs-dev": "^0.32.3",
"yargs": "^17.6.2"
}
}