This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.85 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
{
"name": "mobile-console",
"files": ["dist"],
"main": "./dist/mobile-console.umd.js",
"module": "./dist/mobile-console.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/mobile-console.mjs",
"require": "./dist/mobile-console.umd.js"
}
},
"version": "1.0.0",
"description": "Development browser console for mobile devices",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc",
"eslint": "eslint . --ext .ts,.tsx",
"eslint:fix": "eslint . --ext .ts,.tsx --fix",
"lint": "npm run eslint && npm run typecheck",
"test": "jest",
"prepublishOnly": "turbo lint build test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StarkMP/mobile-console.git"
},
"keywords": [
"devtools",
"mobile console",
"phone console",
"phone devtools",
"mobile devtools"
],
"author": "Maksim Serebryakov <starkmp.work@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/StarkMP/mobile-console/issues"
},
"homepage": "https://github.com/StarkMP/mobile-console#readme",
"baseUrl": "",
"browserslist": [
"> 1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"devDependencies": {
"@jest/globals": "29.6.4",
"@types/node": "20.8.7",
"@types/uuid": "9.0.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "28.1.3",
"postcss": "8.4.29",
"prettier": "2.8.8",
"tailwindcss": "3.3.3",
"turbo": "1.10.15",
"typescript": "4.9.5",
"vite": "4.5.0",
"vite-plugin-dts": "3.6.0"
},
"dependencies": {
"uuid": "9.0.0"
}
}