-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.29 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@linkforty/core",
"version": "1.14.6",
"type": "module",
"description": "Open-source deeplink management engine with device detection and analytics",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/LinkForty/core"
},
"keywords": [
"deeplink",
"deep-linking",
"onelink",
"mobile-links",
"device-detection",
"url-shortener",
"analytics",
"branch-alternative",
"appsflyer-alternative",
"firebase-dynamic-links",
"deferred-deep-linking",
"universal-links",
"app-links",
"attribution",
"open-source",
"self-hosted",
"smart-links",
"mobile-attribution"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"migrate": "tsx src/scripts/migrate.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"dependencies": {
"@fastify/cors": "^8.4.0",
"@fastify/redis": "^6.1.0",
"@fastify/websocket": "^10.0.1",
"@onamfc/api-mocker": "^1.0.4",
"@onamfc/developer-log": "^1.2.3",
"@onamfc/pkg-inspect": "^1.0.2",
"dotenv": "^16.3.0",
"fastify": "^4.24.0",
"geoip-lite": "^1.4.7",
"nanoid": "^3.3.11",
"pg": "^8.11.0",
"qrcode": "^1.5.4",
"ua-parser-js": "^1.0.37",
"zod": "^3.22.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^13.0.0",
"@types/geoip-lite": "^1.4.4",
"@types/qrcode": "^1.5.6",
"@types/node": "^20.8.0",
"@types/pg": "^8.10.0",
"@types/ua-parser-js": "^0.7.39",
"@vitest/coverage-v8": "^1.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release": "^25.0.0",
"tsx": "^4.0.0",
"typescript": "^5.2.0",
"vitest": "^1.0.0"
},
"exports": {
".": "./dist/index.js",
"./utils": "./dist/lib/utils.js",
"./database": "./dist/lib/database.js",
"./routes": "./dist/routes/index.js",
"./types": "./dist/types/index.js"
},
"files": [
"dist",
"migrations",
"README.md",
"LICENSE",
"llms.txt"
]
}