-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.65 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
91
92
93
94
95
96
97
98
99
{
"name": "fingerprint-oss",
"version": "0.10.1",
"description": "A comprehensive JavaScript library for device fingerprinting and system information collection. Provides robust, deterministic fingerprinting for web applications with privacy-conscious design.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"rollup": "rollup -c",
"audit": "npm audit",
"docs": "typedoc",
"test": "cd test && npm run test:unit",
"test:all": "cd test && npm run test:all",
"test:unit": "cd test && npm run test:unit",
"test:e2e": "cd test && npm run test:e2e",
"prepublishOnly": "npm run build"
},
"author": "Akshat Kotpalliwar (alias IntegerAlex on GitHub)",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"LICENSE",
"NOTICE.md",
"COPYRIGHT.md",
"README.md",
"package.json"
],
"keywords": [
"fingerprinting",
"device-fingerprint",
"browser-fingerprint",
"system-info",
"user-agent",
"canvas-fingerprint",
"webgl-fingerprint",
"audio-fingerprint",
"font-detection",
"privacy",
"security",
"web-analytics",
"device-detection",
"tracking",
"identification"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/IntegerAlex"
},
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/IntegerAlex/fingerprint-oss.git"
},
"bugs": {
"url": "https://github.com/IntegerAlex/fingerprint-oss/issues"
},
"homepage": "https://github.com/IntegerAlex/fingerprint-oss#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/express": "^5.0.0",
"@types/node": "^22.13.9",
"express": "^4.18.2",
"rollup": "^4.35.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.20",
"typescript": "^5.9.3",
"vite": "^8.2.1"
},
"dependencies": {
"hash-wasm": "^4.12.0"
},
"overrides": {
"fast-xml-builder": "^1.1.7",
"fast-xml-parser": "^5.7.0",
"postcss": "^8.5.10",
"minimatch": "^3.1.4",
"svgo": "^3.3.3",
"path-to-regexp": "^0.1.13",
"picomatch": "^2.3.2",
"lodash": "^4.18.0",
"fast-uri": "^3.1.2",
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"brace-expansion": "^1.1.13",
"follow-redirects": "^1.16.0",
"qs": "^6.15.2",
"esbuild": "^0.28.1",
"ajv@<6.14.0": "^6.14.0",
"ajv@>=7.0.0 <8.18.0": "^8.18.0"
}
}