-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "espruino_ts",
"version": "1.0.0",
"description": "Template for Espruino projects with TypeScript",
"main": "src/app.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"upload": "node script.js --upload",
"monitor": "node script.js --monitor",
"upload-monitor": "node script.js --upload --monitor"
},
"author": "DrakoPOD",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/espruino": "^1.94.6",
"async": "^3.2.2",
"espruino": "^0.1.40",
"js-yaml": "^4.1.0",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.2",
"yargs": "^17.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrakoPOD/espruino_ts.git"
},
"keywords": [
"Espruino",
"ESP8266",
"Javascript",
"TypeScript"
],
"bugs": {
"url": "https://github.com/DrakoPOD/espruino_ts/issues"
},
"homepage": "https://github.com/DrakoPOD/espruino_ts#readme"
}