-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "qrcode",
"description": "A pure JavaScript QRCode encode and decode library.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nuintun/qrcode.git"
},
"keywords": [
"zxing",
"qrcode"
],
"author": {
"name": "nuintun",
"email": "nuintun@qq.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nuintun/qrcode/issues"
},
"homepage": "https://github.com/nuintun/qrcode#readme",
"scripts": {
"lint": "pnpm --filter ./packages/* lint",
"clean": "pnpm --filter ./packages/* clean",
"test": "pnpm --filter ./packages/core test",
"format": "pnpm --filter ./packages/* format",
"build": "pnpm --filter ./packages/core build",
"dev": "pnpm --filter ./packages/examples dev",
"prod": "pnpm --filter ./packages/examples prod",
"reset": "pnpm -s dlx rimraf -g **/node_modules **/pnpm-lock.yaml"
},
"dependencies": {
"@swc/helpers": "^0.5.15",
"tslib": "^2.8.1"
},
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}