-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "solidjs-userscript",
"version": "0.0.1",
"description": "",
"scripts": {
"start": "vite",
"dev": "vite",
"serve": "vite preview",
"build": "vite build && userscript-builder --mode dev",
"release:bugfix": "vite build && userscript-builder --mode bugfix",
"release:minor": "vite build && userscript-builder --mode minor",
"release:major": "vite build && userscript-builder --mode major"
},
"license": "GPL-3.0",
"userscript": {
"entry": "./dist/index.js",
"dev": "./dist",
"release": "./release",
"fileName": "index",
"meta": {
"name": "new userscript",
"namespace": "http://tampermonkey.net/",
"version": "0.0.0",
"description": "new userscript",
"author": "You",
"match": [
"*://*.*"
],
"grant": "GM_addStyle"
}
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"userscript-builder": "^0.4.0",
"vite": "^5.0.11",
"vite-plugin-solid": "^2.8.2"
},
"dependencies": {
"solid-js": "^1.8.11",
"vite-plugin-css-injected-by-js": "^3.4.0"
}
}