syndicate-js/packages/service/package.json

33 lines
989 B
JSON
Raw Normal View History

2022-04-27 19:19:10 +00:00
{
"name": "@syndicate-lang/service",
"version": "0.11.4",
2022-04-27 19:19:10 +00:00
"description": "Run a node.js program as a service within syndicate-server",
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/main/packages/service",
"license": "GPL-3.0+",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
},
"main": "lib/index.js",
2022-04-27 19:19:10 +00:00
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"scripts": {
"prepare": "yarn compile",
"compile": "syndicate-tsc",
"compile:watch": "syndicate-tsc -w --verbose --intermediate-directory src.ts",
"clean": "rm -rf lib/",
"veryclean": "yarn run clean && rm -rf node_modules"
},
"dependencies": {
"@syndicate-lang/core": "^0.11.8"
2022-04-27 19:19:10 +00:00
},
"devDependencies": {
"@syndicate-lang/ts-plugin": "^0.11.9",
"@syndicate-lang/tsc": "^0.11.9"
2022-04-27 19:19:10 +00:00
}
}