-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 1.02 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
{
"name": "webcomponents",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:site": "vite build --base=/kexp/",
"build:extension": "vite build --config vite.extension.config.js",
"build:extension:firefox": "npm run build:extension && rm -rf dist-extension-firefox && cp -R dist-extension dist-extension-firefox && cp extension/manifest.firefox.json dist-extension-firefox/manifest.json && rm dist-extension-firefox/background.js",
"build:tauri": "vite build --config vite.tauri.config.js",
"tauri": "tauri",
"preview": "vite preview",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"engines": {
"node": "22.x"
},
"dependencies": {
"vite": "^5.4.11"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@tauri-apps/cli": "^2.11.2",
"playwright-testing-library": "^4.5.0"
}
}