forked from Fallstop/modern-svelte-qr-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@lilregie/svelte-scanner",
"description": "Svelte compoonent for Barcode & QR code scanning",
"homepage": "https://github.com/lilregie/svelte-scanner#readme",
"bugs": {
"url": "https://github.com/lilregie/svelte-scanner/issues"
},
"repository": {
"type": "git",
"url": "github:lilregie/svelte-scanner"
},
"license": "MIT",
"version": "0.5.2",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && yarn run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "yarn run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"esm-env": "^1.0.0",
"events": "^3.3.0",
"lodash": "^4.17.21",
"stampit": "^4.3.2",
"svelte-select": "^5.6.1",
"svelte2tsx": "^0.7.3",
"uuid": "^9.0.0",
"visibilityjs": "^2.0.2"
},
"devDependencies": {
"@sveltejs/adapter-cloudflare": "^2.3.0",
"@sveltejs/kit": "^1.20.4",
"@sveltejs/package": "^2.0.0",
"@types/events": "^3.0.0",
"@types/lodash": "^4.14.195",
"@types/uuid": "^9.0.2",
"publint": "^0.2.2",
"sass": "^1.63.6",
"svelte": "^4.2.12",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.9"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0",
"svelte": "^3.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
}
}