cleanup before next text publish

This commit is contained in:
Scott Richmond 2025-06-25 22:58:29 -04:00
parent 44f7ce7b06
commit e86f077247
2 changed files with 3 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/target /target
/Cargo.lock /Cargo.lock
/node_modules

View File

@ -1,16 +1,13 @@
{ {
"name": "@ludus/rudus", "name": "@ludus/rudus",
"version": "0.1.2", "version": "0.1.3",
"description": "A Rust-based Ludus bytecode interpreter.", "description": "A Rust-based Ludus bytecode interpreter.",
"type": "common", "type": "module",
"main": "pkg/ludus.js", "main": "pkg/ludus.js",
"directories": {}, "directories": {},
"keywords": [], "keywords": [],
"author": "Scott Richmond", "author": "Scott Richmond",
"license": "GPL-3.0", "license": "GPL-3.0",
"scripts": {
"build": "webpack"
},
"files": [ "files": [
"pkg/rudus.js", "pkg/rudus.js",
"pkg/ludus.js", "pkg/ludus.js",
@ -19,8 +16,5 @@
"pkg/rudus.d.ts" "pkg/rudus.d.ts"
], ],
"devDependencies": { "devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
} }
} }