mirror of
https://github.com/fingerprintjs/fingerprintjs.git
synced 2026-05-06 22:08:25 +08:00
79 lines
2.8 KiB
JSON
79 lines
2.8 KiB
JSON
{
|
|
"name": "@fingerprintjs/fingerprintjs",
|
|
"description": "Browser fingerprinting library with the highest accuracy and stability",
|
|
"version": "5.2.0",
|
|
"keywords": [
|
|
"fraud",
|
|
"fraud detection",
|
|
"fraud prevention",
|
|
"browser",
|
|
"identification",
|
|
"fingerprint",
|
|
"fingerprinting",
|
|
"browser fingerprint",
|
|
"device fingerprint",
|
|
"privacy"
|
|
],
|
|
"author": "FingerprintJS, Inc (https://fingerprint.com)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/fingerprintjs/fingerprintjs.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/fingerprintjs/fingerprintjs/issues"
|
|
},
|
|
"homepage": "https://github.com/fingerprintjs/fingerprintjs",
|
|
"main": "dist/fp.cjs.js",
|
|
"module": "dist/fp.esm.js",
|
|
"types": "dist/fp.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin \"@rollup/plugin-typescript={tsconfig:'tsconfig.rollupConfig.json'}\"",
|
|
"build:watch": "yarn build --watch",
|
|
"playground:start": "cd playground && webpack-dev-server --mode development",
|
|
"playground:build": "cd playground && webpack --mode production",
|
|
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
|
|
"lint:fix": "yarn lint --fix",
|
|
"test:local": "karma start --preset local --single-run",
|
|
"test:browserstack": "karma start --preset browserstack --single-run",
|
|
"test:browserstack:beta": "karma start --preset browserstack-beta --single-run",
|
|
"check:dts": "tsc --isolatedModules --noEmit dist/fp.d.ts",
|
|
"check:ssr": "node --require './dist/fp.cjs.js' --eval '' || (echo \"The distributive files can't be used with server side rendering. Make sure the code doesn't use browser API until an exported function is called.\" && exit 1)"
|
|
},
|
|
"devDependencies": {
|
|
"@fpjs-incubator/broyster": "^0.3.0",
|
|
"@rollup/plugin-json": "^5.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-terser": "^0.2.1",
|
|
"@rollup/plugin-typescript": "^10.0.1",
|
|
"@types/jasmine": "^3.10.3",
|
|
"@types/ua-parser-js": "^0.7.39",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"file-loader": "^6.2.0",
|
|
"got": "^11.8.5",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"karma": "^6.4.1",
|
|
"prettier": "^2.7.1",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^3.25.0",
|
|
"rollup-plugin-dts": "^5.3.1",
|
|
"rollup-plugin-license": "^3.0.1",
|
|
"terser-webpack-plugin": "^5.3.6",
|
|
"ts-loader": "^9.4.2",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.1.6",
|
|
"ua-parser-js": "^1.0.39",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "^5.0.1",
|
|
"webpack-dev-server": "^5.2.1"
|
|
}
|
|
}
|