-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "@profpowell/browser-console",
"version": "1.1.1",
"description": "A zero-dependency vanilla JavaScript web component that captures and displays browser console output with syntax highlighting and type-aware formatting",
"type": "module",
"main": "dist/browser-console.js",
"module": "dist/browser-console.js",
"types": "browser-console.d.ts",
"exports": {
".": {
"types": "./browser-console.d.ts",
"import": "./dist/browser-console.js",
"default": "./dist/browser-console.js"
}
},
"files": [
"dist",
"browser-console.d.ts",
"custom-elements.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"test:ui": "playwright test --ui",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\"",
"analyze": "cem analyze --litelement",
"prepublishOnly": "npm run build && npm run analyze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProfPowell/browser-console.git"
},
"keywords": [
"console",
"browser",
"web-components",
"custom-elements",
"debug",
"logging",
"developer-tools",
"devtools",
"vanilla-js",
"profpowell-web-components"
],
"author": "Prof Thomas Powell",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProfPowell/browser-console/issues"
},
"homepage": "https://profpowell.github.io/browser-console/",
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@playwright/test": "^1.57.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"vite": "^6.0.0"
},
"customElements": "custom-elements.json"
}