-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "machini",
"version": "1.1.0",
"description": "Get hardware specs, Machine ID(Device ID/UUID) information, and more for your current device. It's designed to be fast and lightweight so you can get just the information you need.",
"author": "CDGet <jooy2.contact@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jooy2/machini.git",
"repository": {
"type": "git",
"url": "https://github.com/jooy2/machini.git"
},
"bugs": {
"url": "https://github.com/jooy2/machini/issues"
},
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run format:fix && tsc --project tsconfig.prod.json && npm run minify",
"test": "npm run build && glob -c \"tsx --test\" \"./test/**/*.test.ts\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"minify": "terser-glob 'dist/**/*.js' --config-file terser.config.json",
"prepare": "npm run build",
"format": "prettier .",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"index.d.ts": [
"dist/index.d.ts"
]
}
},
"keywords": [
"device",
"hardware",
"uuid",
"machine id",
"machineid",
"mhid",
"uniqueid",
"hardware id",
"system id",
"system",
"sysinfo",
"util",
"utility",
"tool"
],
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"glob": "^11.0.0",
"prettier": "^3.4.2",
"terser-glob": "^1.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}