-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 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
{
"name": "@inbrowserapp/mac-address",
"version": "1.0.2",
"type": "module",
"private": false,
"description": "MAC address utilities: conversion between bases, normalization, BigInt conversion, IPv6 link-local generation, validation, and registry lookup.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsc",
"lint": "eslint --fix src",
"lint-check": "eslint --no-fix src",
"format": "prettier --write src",
"format-check": "prettier --check src",
"test": "vitest",
"coverage": "vitest --coverage",
"download:mac-registry": "tsx scripts/download-mac-registry.ts"
},
"keywords": [
"mac-address",
"mac",
"utils"
],
"files": [
"lib",
"src"
],
"author": "InBrowserApp",
"license": "MIT",
"repository": "https://github.com/InBrowserApp/mac-address",
"homepage": "https://github.com/InBrowserApp/mac-address",
"bugs": {
"url": "https://github.com/InBrowserApp/mac-address/issues"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/js": "^9.27.0",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "3.2.4",
"@vitest/eslint-plugin": "^1.2.0",
"csvtojson": "^2.0.10",
"eslint": "^9.27.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"npm-run-all2": "^8.0.3"
}
}