-
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.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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-window",
"version": "1.4.5",
"description": "A Safari-style browser window web component for demos and tutorials",
"type": "module",
"main": "dist/browser-window.js",
"module": "dist/browser-window.js",
"types": "browser-window.d.ts",
"exports": {
".": {
"types": "./browser-window.d.ts",
"import": "./dist/browser-window.js",
"default": "./dist/browser-window.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"browser-window.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",
"prepublishOnly": "npm run lint && npm run test && npm run build && npm run analyze"
},
"customElements": "custom-elements.json",
"keywords": [
"web-components",
"custom-elements",
"vanilla-js",
"browser-window",
"demo",
"tutorial",
"profpowell-web-components"
],
"author": "ProfPowell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ProfPowell/browser-window.git"
},
"bugs": {
"url": "https://github.com/ProfPowell/browser-window/issues"
},
"homepage": "https://profpowell.github.io/browser-window/",
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@playwright/test": "^1.57.0",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"vite": "^7.3.1"
}
}