-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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": "vatom-spaces-emoji-swap",
"version": "0.1.1",
"description": "A plugin for Vatom Spaces.",
"main": "src/index.js",
"private": true,
"browserslist": "> 1%, not dead",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:panel && npm run build:plugin",
"build:plugin": "webpack --env target=plugin",
"build:panel": "webpack --env target=panel",
"publish": "npx -p @vatom/cli@latest vatom plugin publish",
"login": "npx -p @vatom/cli@latest vatom auth",
"sideload": "npm run build && npx -p @vatom/cli@latest vatom plugin sideload",
"sideload2": "npm run build && node ../varius-cli/build plugin sideload",
"start": "webpack serve"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.32.0",
"css-loader": "^6.8.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"rimraf": "^5.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"vatom-spaces-plugins": "^1.1.8"
}
}