mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 05:38:35 +00:00
34 lines
984 B
JSON
34 lines
984 B
JSON
{
|
|
"name": "hs2js",
|
|
"version": "0.0.4",
|
|
"description": "Experimental Haskell in JavaScript interpreter",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"scripts": {
|
|
"build-wasm": "tree-sitter build-wasm node_modules/tree-sitter-haskell && mv tree-sitter-haskell.wasm ./dist/ && cp node_modules/web-tree-sitter/tree-sitter.wasm ./dist/",
|
|
"build": "vite build && npm run build-wasm",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/felixroos/hs2js.git"
|
|
},
|
|
"keywords": [
|
|
"haskell",
|
|
"javascript"
|
|
],
|
|
"author": "Felix Roos <flix91@gmail.com>",
|
|
"license": "AGPL-3.0-or-later",
|
|
"bugs": {
|
|
"url": "https://github.com/tidalcycles/strudel/issues"
|
|
},
|
|
"homepage": "https://github.com/tidalcycles/strudel/tree/main/packages/hs2js",
|
|
"dependencies": {
|
|
"web-tree-sitter": "^0.20.8"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "^5.0.10",
|
|
"tree-sitter-haskell": "^0.21.0"
|
|
}
|
|
}
|