diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/package.json b/package.json index 05119aa..eeac2a1 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,18 @@ { + "name": "gleam_javascript", "type": "module", "scripts": { - "test": "bash bin/test.sh" + "build": "node bin/build.js build", + "test": "node bin/build.js test" }, "devDependencies": { "gleam-packages": "file:./target/lib" - } + }, + "gleamDependencies": [ + { + "name": "gleam_stdlib", + "ref": "main", + "url": "https://github.com/gleam-lang/stdlib.git" + } + ] } |