-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
{
"name": "udid-tools",
"version": "0.1.0",
"private": true,
"description": "UDID Tools — a simple Next.js web service to extract iOS device identifiers (UDID, IMEI, MEID, Serial, Product, Version) via a signed configuration profile.",
"keywords": [
"UDID",
"iOS",
"MDM",
"configuration-profile",
"Next.js",
"UDID extractor",
"iPhone",
"iPad"
],
"homepage": "https://www.udid.tools",
"repository": {
"type": "git",
"url": "git+https://github.com/Baskerville42/udid-tools.git"
},
"bugs": {
"url": "https://github.com/Baskerville42/udid-tools/issues"
},
"author": {
"name": "Alexander Tartmin",
"url": "https://www.linkedin.com/in/alexandertartmin",
"email": "alexander@tartmin.name"
},
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "npm@10.9.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"format": "prettier --write ."
},
"dependencies": {
"axios": "^1.12.0",
"crypto": "^1.0.1",
"next": "15.5.9",
"next-sitemap": "^4.2.3",
"node-forge": "^1.3.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/node-forge": "^1.3.13",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/xml2js": "^0.4.14",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"typescript": "^5"
}
}