forked from sashin/sashinexists
27 lines
757 B
JSON
27 lines
757 B
JSON
{
|
|
"name": "@weborigami/language",
|
|
"version": "0.2.1",
|
|
"description": "Web Origami expression language compiler and runtime",
|
|
"type": "module",
|
|
"main": "./main.js",
|
|
"types": "./index.ts",
|
|
"devDependencies": {
|
|
"@types/node": "22.7.4",
|
|
"peggy": "4.0.3",
|
|
"typescript": "5.6.2",
|
|
"yaml": "2.5.1"
|
|
},
|
|
"dependencies": {
|
|
"@weborigami/async-tree": "0.2.1",
|
|
"@weborigami/types": "0.2.1",
|
|
"watcher": "2.3.1"
|
|
},
|
|
"scripts": {
|
|
"build": "peggy --allowed-start-rules=\"*\" --format es src/compiler/origami.pegjs --output src/compiler/parse.js",
|
|
"buildTests": "node ./test/generator/generateTests.js",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "node --test --test-reporter=spec",
|
|
"typecheck": "tsc"
|
|
}
|
|
}
|