-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 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
70
71
72
73
{
"name": "@sec-ant/wc-qr-code",
"description": "A <qr-code> web component powered by Lit",
"private": false,
"version": "1.0.5",
"type": "module",
"files": [
"./dist"
],
"exports": {
".": "./dist/index.js",
"./pure": "./dist/pure.js",
"./side-effects": "./dist/side-effects.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sec-ant/wc-qr-code.git"
},
"homepage": "https://github.com/Sec-ant/wc-qr-code",
"bugs": {
"url": "https://github.com/Sec-ant/wc-qr-code/issues",
"email": "zzwu@zju.edu.cn"
},
"keywords": [
"web-component",
"qr-code",
"qrcode",
"lit"
],
"author": {
"name": "Ze-Zheng Wu"
},
"license": "MIT",
"config": {},
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"dev": "vite",
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"prebuild": "npm run type-check",
"build": "vite build",
"postbuild": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"prepublishOnly": "npm run build",
"ncu": "npx npm-check-updates -u",
"postncu": "npm i"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/browser": "^0.34.4",
"@vitest/coverage-istanbul": "^0.34.4",
"@vitest/ui": "^0.34.4",
"eslint": "^8.49.0",
"npm-check-updates": "^16.13.3",
"playwright": "^1.37.1",
"rollup-plugin-minify-html-literals-v3": "^1.3.3",
"semantic-release": "^22.0.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
},
"dependencies": {
"@sec-ant/qr-code-generator": "^1.0.0",
"lit": "^2.8.0"
}
}