@pixelverse/strichjs-sdk 0.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +3 -0
- package/NOTICE +277 -0
- package/README.md +6 -0
- package/dist/strich.d.ts +440 -0
- package/dist/strich.js +3175 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pixelverse/strichjs-sdk",
|
|
3
|
+
"version": "0.8.7",
|
|
4
|
+
"description": "STRICH JavaScript SDK",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"barcode scanning",
|
|
7
|
+
"qr code",
|
|
8
|
+
"aztec code",
|
|
9
|
+
"data matrix",
|
|
10
|
+
"ean",
|
|
11
|
+
"upc",
|
|
12
|
+
"code 128",
|
|
13
|
+
"code 39",
|
|
14
|
+
"code 93",
|
|
15
|
+
"itf",
|
|
16
|
+
"databar",
|
|
17
|
+
"codabar"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://strich.io",
|
|
20
|
+
"source": "src/index.ts",
|
|
21
|
+
"license": "commercial",
|
|
22
|
+
"files": [
|
|
23
|
+
"NOTICE",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"dist/*.js",
|
|
26
|
+
"dist/*.d.ts"
|
|
27
|
+
],
|
|
28
|
+
"type": "module",
|
|
29
|
+
"browser": "dist/strich.js",
|
|
30
|
+
"types": "dist/strich.d.ts",
|
|
31
|
+
"targets": {
|
|
32
|
+
"browser": {
|
|
33
|
+
"optimize": false
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"prebuild": "rm -rf dist",
|
|
38
|
+
"build": "parcel build --no-cache",
|
|
39
|
+
"test": "jest",
|
|
40
|
+
"lint": "eslint src --ext .ts",
|
|
41
|
+
"check": "tsc --noEmit",
|
|
42
|
+
"typedoc": "typedoc --name STRICH --includeVersion --readme none --excludeInternal --excludePrivate --excludeProtected --excludeNotDocumented --disableSources",
|
|
43
|
+
"typedoc-watch": "typedoc --name STRICH --includeVersion --readme none --excludeInternal --excludePrivate --excludeProtected --excludeNotDocumented --disableSources --watch",
|
|
44
|
+
"postpublish": "npm run publish-npmjs",
|
|
45
|
+
"publish-npmjs": "npm publish --access public --ignore-scripts --@pixelverse:registry='https://registry.npmjs.org'"
|
|
46
|
+
},
|
|
47
|
+
"staticFiles": {},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"parcel": "^2.8.2",
|
|
50
|
+
"@parcel/packager-ts": "^2.8.2",
|
|
51
|
+
"@parcel/transformer-glsl": "^2.8.2",
|
|
52
|
+
"@parcel/transformer-typescript-types": "^2.8.2",
|
|
53
|
+
"@types/emscripten": "^1.39.6",
|
|
54
|
+
"@types/jest": "^28.1.1",
|
|
55
|
+
"@types/offscreencanvas": "^2019.6.4",
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
57
|
+
"@typescript-eslint/parser": "^5.22.0",
|
|
58
|
+
"esbuild": "^0.16.10",
|
|
59
|
+
"eslint": "^8.14.0",
|
|
60
|
+
"jest": "^28.1.1",
|
|
61
|
+
"jest-environment-jsdom": "^29.3.1",
|
|
62
|
+
"ts-jest": "^28.0.4",
|
|
63
|
+
"typedoc": "^0.23.23",
|
|
64
|
+
"typescript": "^4.6.4"
|
|
65
|
+
}
|
|
66
|
+
}
|