Skip to content

Commit

Permalink
feat: add example-plugin-node
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmo-ds committed Jun 25, 2022
1 parent 8136505 commit 206b558
Show file tree
Hide file tree
Showing 7 changed files with 971 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/plugins/*
!/plugins/.gitkeep
!/plugins/example-plugin
/plugins/example-plugin/.installed
!/plugins/example-plugin-node

/config.development.toml

Expand Down
2 changes: 2 additions & 0 deletions plugins/example-plugin-node/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
3 changes: 3 additions & 0 deletions plugins/example-plugin-node/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
}
7 changes: 7 additions & 0 deletions plugins/example-plugin-node/manifest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name = "example-plugin-node"
version = "0.0.1"
author = "Gizmo"

[entrypoint]
args = ["dist/plugin.js"]
executable = "node.exe"
18 changes: 18 additions & 0 deletions plugins/example-plugin-node/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "example-plugin-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bundle": "tsup src/plugin.ts plugin.js --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.0.0",
"esno": "^0.16.3",
"tsup": "^6.1.2",
"vrchat-osc-manager": "^0.1.0"
}
}
Loading

0 comments on commit 206b558

Please sign in to comment.