-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 KB
/
package.json
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
{
"name": "gimloader",
"version": "1.0.0",
"description": "A plugin loader and manager for Gimkit",
"main": "build/bundle.js",
"type": "module",
"types": "index.d.ts",
"scripts": {
"build": "node build.js",
"watch": "node build.js -w",
"buildTypes": "tsc -p declaration.tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheLazySquid/Gimloader.git"
},
"keywords": [
"Gimkit",
"plugins"
],
"author": "TheLazySquid",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheLazySquid/Gimloader/issues"
},
"homepage": "https://github.com/TheLazySquid/Gimloader#readme",
"devDependencies": {
"@types/node": "^22.5.5",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"@types/tampermonkey": "^5.0.2",
"autoprefixer": "^10.4.20",
"esbuild": "^0.23.1",
"esbuild-svelte": "^0.9.0",
"postcss": "^8.4.41",
"postcss-load-config": "^6.0.1",
"postcss-minify": "^1.1.0",
"sass": "^1.78.0",
"svelte-preprocess": "^6.0.2",
"tailwindcss": "^3.4.10",
"tslib": "^2.6.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.28.2",
"@uiw/codemirror-extensions-hyper-link": "^4.22.2",
"codemirror": "^6.0.1",
"debounce": "^2.1.0",
"eventemitter2": "^6.4.9",
"flowbite": "^2.5.1",
"flowbite-svelte": "^0.46.15",
"svelte": "^5.16.0",
"svelte-dnd-action": "^0.9.50",
"svelte-material-icons": "^3.0.5"
}
}