-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "@try0/browser-tab-id",
"version": "0.0.4",
"description": "Unique browser tab ID generator.",
"keywords": [
"browser",
"tab",
"id",
"unique",
"session",
"web"
],
"author": "try0 <try0.development@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/try0/browser-tab-id",
"repository": {
"type": "git",
"url": "https://github.com/try0/browser-tab-id.git"
},
"bugs": {
"url": "https://github.com/try0/browser-tab-id/issues"
},
"main": "dist/browser-tab-id.es.js",
"types": "dist/browser-tab-id.es.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/browser-tab-id.es.js",
"types": "./dist/browser-tab-id.es.d.ts"
}
},
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "cross-env BUILD_LIB=true vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"cross-env": "^10.0.0",
"fake-indexeddb": "^6.1.0",
"jsdom": "^26.1.0",
"typescript": "~5.8.3",
"vite": "^7.1.2",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
}
}