-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "userscript-compiler",
"version": "2.0.0",
"description": "Compile one userscript into userscript, browser-extension, and standalone web packages with a submission guide.",
"private": true,
"type": "module",
"bin": {
"userscript-compiler": "./src/cli.mjs"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "node --test tests/*.test.mjs",
"compile": "node src/cli.mjs",
"check": "npm run test && npm run build"
},
"dependencies": {
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"overrides": {
"tailwindcss": {
"picomatch": "^2.3.2",
"yaml": "^2.9.0",
"glob": "^10.5.0"
},
"glob": {
"minimatch": "^9.0.9"
},
"minimatch": {
"brace-expansion": "^2.1.0"
},
"vite": {
"yaml": "^2.9.0"
}
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.14",
"tailwindcss": "^3.4.19",
"vite": "^8.0.13"
}
}