-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1008 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1008 Bytes
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
{
"name": "typescript",
"version": "1.0.0",
"description": "This an example of using esptool-js with parcel and typescript",
"source": "src/index.html",
"scripts": {
"dev": "npm run clean && parcel src/index.html",
"build": "npm run clean && parcel build src/index.html --no-optimize --public-url ./",
"clean": "rm -rf dist .parcel-cache",
"test": "echo \"Error: no test specified\" && exit 1"
},
"parcelIgnore": [
"./docs/.+"
],
"author": "",
"license": "ISC",
"dependencies": {
"esptool-js": "^0.4.3",
"js-untar": "^2.0.0",
"lightningcss": "^1.30.1",
"pako": "^2.1.0"
},
"devDependencies": {
"@types/pako": "^2.0.3",
"buffer": "^6.0.3",
"parcel": "^2.8.3",
"parcel-reporter-static-files-copy": "^1.5.3",
"parcel-resolver-ignore": "^2.1.5",
"rimraf": "^4.1.2",
"typescript": "^4.9.4",
"web-serial-polyfill": "^1.0.15"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.4.2-alpha.0"
}
}