-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (41 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (41 loc) · 1.34 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
{
"name": "iframe-player",
"version": "0.0.1",
"description": "",
"type": "module",
"license": "MPL-2.0",
"scripts": {
"dev": "npm run dev:injected & npm run dev:plugin",
"build": "npm run build:injected && npm run build:plugin && npm run build:proxy",
"dev:proxy": "vite --config workerd/vite.config.js dev",
"dev:injected": "vite build --mode development --config injected/vite.config.js",
"dev:plugin": "vite build --mode development --config plugin/vite.config.js",
"build:proxy": "vite --config workerd/vite.config.js build",
"build:plugin": "vite build --config plugin/vite.config.js",
"build:injected": "vite build --config injected/vite.config.js",
"deploy:proxy": "wrangler deploy"
},
"packageManager": "pnpm@9.12.2",
"author": "userXinos [github.com]",
"devDependencies": {
"@antfu/eslint-config": "^4.14.1",
"@cloudflare/workers-types": "^4.20250610.0",
"eslint": "^9.28.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-jsdoc": "^50.7.1",
"eslint-plugin-vue": "^10.2.0",
"pinia": "^3.0.3",
"vue": "^3.5.16",
"vue-router": "^4.5.1"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.5.0",
"@vitejs/plugin-vue": "^5.2.4",
"glob": "^11.0.2",
"postcss": "^8.5.4",
"postcss-nested": "^7.0.2",
"rollup-plugin-replace-imports-with-vars": "^1.1.0",
"vite": "^6.3.5",
"wrangler": "^4.19.1"
}
}