-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "modern-svelte-qr-scanner",
"license": "MIT",
"version": "1.6.2",
"scripts": {
"dev": "vite dev",
"build": "vite build && yarn run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"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.1.12",
"sass": "^1.63.6",
"svelte": "^3.59.2",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.9"
},
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"events": "^3.3.0",
"lodash": "^4.17.21",
"stampit": "^4.3.2",
"svelte-select": "^4.4.7",
"svelte2tsx": "^0.6.16",
"uuid": "^9.0.0",
"visibilityjs": "^2.0.2"
},
"peerDependencies": {
"@sveltejs/kit": "^1.20.4",
"svelte": "^3.59.2"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
}
}