diff --git a/.gitignore b/.gitignore index 4fffb2f..17a4f2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target /Cargo.lock +/node_modules diff --git a/package.json b/package.json index 77144c9..5303728 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,13 @@ { "name": "@ludus/rudus", - "version": "0.1.2", + "version": "0.1.3", "description": "A Rust-based Ludus bytecode interpreter.", - "type": "common", + "type": "module", "main": "pkg/ludus.js", "directories": {}, "keywords": [], "author": "Scott Richmond", "license": "GPL-3.0", - "scripts": { - "build": "webpack" - }, "files": [ "pkg/rudus.js", "pkg/ludus.js", @@ -19,8 +16,5 @@ "pkg/rudus.d.ts" ], "devDependencies": { - "@wasm-tool/wasm-pack-plugin": "^1.7.0", - "webpack": "^5.99.9", - "webpack-cli": "^6.0.1" } }