-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.59 KB
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
{
"name": "@schaukel/qr",
"type": "module",
"version": "0.0.1",
"description": "Reusable Vue component and canvas API for generating styled QR codes.",
"author": "vaaski <admin@vaa.ski>",
"license": "MIT",
"homepage": "https://github.com/schaukeldev/qr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/schaukeldev/qr.git"
},
"bugs": {
"url": "https://github.com/schaukeldev/qr/issues"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"play": "vite",
"test": "vitest",
"typecheck": "vue-tsc --noEmit && tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build",
"lint": "eslint ."
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"delaunator": "^5.0.0",
"seedrandom": "^3.0.5",
"stackblur-canvas": "^2.6.0",
"uqr": "^0.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@tsdown/css": "^0.22.0",
"@types/node": "^25.6.2",
"@types/seedrandom": "^3.0.8",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/browser-playwright": "^4.1.5",
"bumpp": "^11.1.0",
"eslint": "^10.4.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-vaaski": "^3.1.1",
"playwright": "^1.59.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vite": "^8.0.11",
"vitest": "^4.1.5",
"vitest-browser-vue": "^2.1.0",
"vue": "^3.5.34",
"vue-tsc": "^3.2.8"
}
}