-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "sane-wasm",
"version": "0.3.2",
"description": "A project to bring the SANE API to the web.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"clean": "npm run clean:ts && npm run clean:sane",
"clean:ts": "rm -rf dist/ docs/",
"clean:sane": "./build.sh --no-build --clean",
"prebuild": "rm -rf dist/ docs/ build/",
"build": "npm run build:ts && npm run build:sane",
"build:ts": "tsc && typedoc",
"postbuild:ts": "rm -rf dist/docs-plugin.*",
"build:sane": "./build.sh --with-docker --clean",
"debug:sane": "./build.sh --with-docker --debug --emrun"
},
"files": [
"dist/",
"lib/",
"build/",
"libsane.d.ts",
"LICENSE-LGPL.txt",
"LICENSE.txt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/goncalomb/sane-wasm.git"
},
"author": "Gonçalo MB <me@goncalomb.com>",
"license": "GPL-2.0+ OR LGPL-2.1+",
"bugs": {
"url": "https://github.com/goncalomb/sane-wasm/issues"
},
"homepage": "https://github.com/goncalomb/sane-wasm#readme",
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all"
]
},
"peerDependencies": {
"usb": "^2.10.0"
},
"peerDependenciesMeta": {
"usb": {
"optional": true
}
},
"devDependencies": {
"jest": "^29.6.4",
"jest-extended": "^4.0.1",
"typedoc": "^0.25.0",
"typescript": "^5.2.2"
}
}