-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "sense-device-identity-js",
"version": "1.0.0",
"description": "The most accurate device intelligence platform",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "rm -rf dist && rollup -c --environment BUILD:dist",
"test": "jest",
"lint": "eslint . --ext .ts --rule 'indent: [error, tab]'",
"format": "prettier --write .",
"lint:fix": "eslint . --ext .ts --fix",
"playground": "rm -rf playground/sense.js && rollup -c --environment BUILD:playground && live-server playground -c-1 -p 8080 --host=localhost"
},
"repository": {
"type": "git",
"url": "https://github.com/sense-opensource/sense-device-identity-js"
},
"keywords": [
"device fingerprint",
"fraud detection",
"sense os",
"device intelligence",
"browser fingerprint",
"sense js",
"device js",
"device identity js",
"device identity"
],
"author": "Sense OS",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"live-server": "^1.2.2",
"prettier": "^3.5.3",
"rollup": "^4.40.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}