-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
66
67
68
69
{
"name": "unitag-api-client",
"version": "1.0.0",
"description": "A comprehensive TypeScript/JavaScript client library for the Unitag API v2, providing QR code generation, management, analytics, and more",
"type": "module",
"keywords": [
"unitag",
"qr-code",
"qrcode",
"api",
"api-client",
"typescript",
"short-url",
"url-shortener"
],
"author": "Abdus Uddin <uddin.a@outlook.com> (https://github.com/uddin-a)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uddin-a/unitag-api-client"
},
"homepage": "https://github.com/uddin-a/unitag-api-client#readme",
"bugs": {
"url": "https://github.com/uddin-a/unitag-api-client/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm run test"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "^4.0.13",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"happy-dom": "^20.0.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.13"
}
}