-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "simple-qrbtf",
"description": "this is simple create a svg qrcode library",
"private": false,
"version": "1.5.0",
"type": "module",
"homepage": "https://github.com/stringke/simple-qrbtf/",
"repository": {
"type": "git",
"url": "git+https://github.com/stringke/simple-qrbtf.git"
},
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"node": "./dist/index.cjs"
},
"scripts": {
"dev": "vite",
"build": "DEBUG=\"vite-plugin-dts:bundle\" vite build",
"commit": "git-cz",
"release": "standard-version"
},
"author": {
"name": "StringKe",
"email": "[email protected]",
"url": "https://github.com/stringke"
},
"keywords": [
"qrcode",
"svg",
"library",
"qrbtf",
"simple"
],
"devDependencies": {
"@types/node": "^20.11.27",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"typescript": "5.3.3",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}