-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 783 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
{
"name": "scanner",
"version": "0.0.1",
"description": "Document scanner",
"repository": "https://github.com/101arrowz/scanner",
"author": "Arjun Barrett",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html",
"build-wasm": "wasm-pack build --target web",
"build": "tsc && tsc -p src/workers/tsconfig.json && parcel build src/index.html --public-url ."
},
"devDependencies": {
"@parcel/compressor-brotli": "^2.9.3",
"@parcel/compressor-gzip": "^2.9.3",
"@parcel/packager-raw-url": "^2.9.3",
"@types/w3c-image-capture": "^1.0.7",
"parcel": "^2.9.3",
"parcel-config-pwa-manifest": "^0.1.5",
"typescript": "^5.2.2"
},
"dependencies": {
"@parcel/service-worker": "^2.9.3",
"image-capture": "^0.4.0"
}
}