-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "@forward-software/qrcodets",
"version": "1.0.0",
"description": "QR Code generator written in TypeScript",
"author": "ForWarD Software (https://github.com/forwardsoftware)",
"contributors": [
"SimonLee (https://github.com/lilRedaka)",
"Sangmin, Shim (https://github.com/davidshimjs)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/forwardsoftware/qrcodets.git"
},
"keywords": [
"qrcode",
"qr-code",
"qrcode-generator",
"qr-generator"
],
"homepage": "https://github.com/forwardsoftware/qrcodets#readme",
"bugs": "https://github.com/forwardsoftware/qrcodets/issues",
"scripts": {
"start": "vite serve website --host",
"build": "tsc --removeComments && tsc --declaration --emitDeclarationOnly",
"clean": "rimraf dist"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6",
"devDependencies": {
"rimraf": "^6.0.1",
"typescript": "^6.0.2",
"vite": "^8.0.0"
}
}