forked from Dynamsoft/barcode-reader-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
27 lines (25 loc) · 987 Bytes
/
package.js
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
Package.describe({
name: 'dynamsoft:javascript-barcode',
version: '7.3.0-v4',
summary: 'Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR Code, DaraMatrix, PDF417, and Aztec Code.',
git: 'https://github.com/dynamsoft/javascript-barcode.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.8.0.1');
api.addAssets([
"/dist/dbr.js",
"/dist/dbr.mjs",
"/dist/dbr.browser.mjs",
"/dist/dbr-7.4.0.1.worker.js",
"/dist/dbr-7.4.0.1.wasm.js",
"/dist/dbr-7.4.0.1.wasm",
"/dist/dbr-7.4.0.1.full.wasm.js",
"/dist/dbr-7.4.0.1.full.wasm",
"/dist/dbr-7.4.0.1.node.wasm.js",
"/dist/dbr-7.4.0.1.node.wasm",
"/dist/dbr.d.ts",
"/dist/dbr.reference.d.ts",
"/dist/dbr.scanner.html"
], 'client');
});