happy bday!

This commit is contained in:
Joey Eamigh
2024-05-26 22:45:45 -04:00
commit be3a13eee1
34 changed files with 233005 additions and 0 deletions

26
shell/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "shell",
"collaborators": [
"Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com>"
],
"version": "0.1.0",
"scripts": {
"dev": "wasm-pack build --debug --no-pack",
"build": "wasm-pack build --no-pack"
},
"files": [
"./pkg/shell_bg.wasm",
"./pkg/shell.js",
"./pkg/shell_bg.js",
"./pkg/shell.d.ts"
],
"module": "./pkg/shell.js",
"types": "./pkg/shell.d.ts",
"sideEffects": [
"./pkg/shell.js",
"./pkg/snippets/*"
],
"dependencies": {
"@xterm/xterm": "^5.5.0"
}
}