-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "browser-switcher",
"version": "1.1.2",
"description": "Redirect users to specific browsers on Android (using Intents) and iOS (using URL schemes).",
"homepage": "https://github.com/jakkimcfly/browser-switcher",
"keywords": [
"browser",
"open",
"redirect",
"scheme",
"intent",
"mobile",
"android",
"ios"
],
"license": "MIT",
"author": {
"name": "Aleksandr Zakharov",
"url": "https://jakkimcfly.com",
"email": "hello@jakkimcfly.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jakkimcfly/browser-switcher.git"
},
"bugs": {
"url": "https://github.com/jakkimcfly/browser-switcher/issues"
},
"unpkg": "./dist/index.min.js",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublish": "npm run build && npm run test",
"test": "vitest",
"lint": "eslint ./src/**/*.ts ./tests/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts ./tests/**/*.ts --fix"
},
"devDependencies": {
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"user-agent-data-types": "^0.4.2",
"vitest": "^3.2.4"
}
}