-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.59 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.59 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
{
"name": "device-uuid",
"description": "Fast browser device uuid generation library.",
"version": "3.0.1",
"homepage": "https://github.com/biggora/device-uuid/",
"repository": {
"type": "git",
"url": "git://github.com/biggora/device-uuid.git"
},
"license": "MIT",
"author": {
"name": "Alexey Gordeyev",
"email": "aleksej@gordejev.lv",
"url": "https://github.com/biggora"
},
"contributors": [
{
"name": "Vitalii Onyshchenko",
"url": "https://github.com/uzer-ua"
}
],
"keywords": [
"useragent",
"browser",
"device",
"uuid",
"fingerprint",
"typescript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.browser.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/index.d.ts",
"default": "./dist/index.browser.min.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,json,md,yml}\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test:watch": "vitest",
"test": "vitest run",
"test:vitest": "vitest run",
"test:unit": "vitest run",
"test:e2e": "playwright test --reporter null",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test:unit && npm run test:e2e",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.9.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.5",
"eslint": "^9.38.0",
"happy-dom": "^20.0.10",
"http-server": "^14.1.1",
"prettier": "^3.6.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.5"
}
}