-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (51 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (51 loc) · 1.48 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
{
"name": "@guardianstack/guardianjs-free",
"version": "0.1.3",
"private": false,
"description": "Open-source, purely client-side browser fingerprinting library that computes a Guardian anchor-based visitor identifier.",
"license": "MIT",
"author": "GuardianStack",
"homepage": "https://github.com/guardianstack/guardianjs#readme",
"repository": {
"type": "git",
"url": "https://github.com/guardianstack/guardianjs.git"
},
"bugs": {
"url": "https://github.com/guardianstack/guardianjs/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"fraud",
"fraud detection",
"fraud prevention",
"browser",
"fingerprint",
"fingerprinting",
"device fingerprint",
"visitor id",
"guardian"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsup src/index.ts --format esm,cjs,iife --global-name GuardianJS --dts --sourcemap --minify --out-dir dist",
"build:watch":
"npm run clean && tsup src/index.ts --format esm,cjs,iife --global-name GuardianJS --dts --sourcemap --watch --out-dir dist",
"lint": "echo \"No linter configured for guardianjs yet\"",
"test": "echo \"No tests configured for guardianjs yet\""
},
"devDependencies": {
"@types/node": "^20.14.12",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}