-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.15 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
{
"name": "miniegg-plus-device",
"version": "1.1.0",
"main": "index.js",
"repository": "[email protected]:ainft-team/miniegg-plus-device.git",
"author": "AINFT Team",
"contributors": [
{
"name": "Doheun Kim",
"url": "https://github.com/ehgmsdk20"
},
{
"name": "liayoo",
"url": "https://github.com/liayoo"
}
],
"license": "MIT",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "s=$(npx kaluma list | grep \"Raspberry Pi\" | cut -d \" \" -f1) && screen $s 115200",
"upload": "npm run build && s=$(npx kaluma list | grep \"Raspberry Pi\" | cut -d \" \" -f1) && npx kaluma write dist/main.js -p $s",
"test": "webpack --mode=development && s=$(npx kaluma list | grep \"Raspberry Pi\" | cut -d \" \" -f1) && TEST=true npm run build:dev && npx kaluma write dist/main.js -p $s && screen $s 115200"
},
"dependencies": {
"crypto": "^1.0.1"
},
"devDependencies": {
"@kaluma/cli": "1.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}