1
0
forked from GitHub/gf-core

Beginnings of JavaScript bindings

This commit is contained in:
John J. Camilleri
2021-10-01 12:47:39 +02:00
parent e6960e30f6
commit 314db3ea7f
23 changed files with 311 additions and 3065 deletions

View File

@@ -0,0 +1,20 @@
{
"name": "jspgf",
"version": "1.0.0",
"description": "JavaScript bindings to the Grammatical Frameworks's PGF runtime",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"test": "ts-node ./tests/basic.ts"
},
"author": "John J. Camilleri",
"license": "ISC",
"dependencies": {
"ffi": "^2.3.0"
},
"devDependencies": {
"@types/ffi": "^0.2.3",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}