37 lines
927 B
JSON
37 lines
927 B
JSON
{
|
|
"name": "ts-osc",
|
|
"version": "1.0.0",
|
|
"description": "Fully TypeScript-native OSC Client based on osc-min",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"compile": "tsc",
|
|
"watch": "tsc --watch",
|
|
"docs": "typedoc --out docs ./src/index.ts",
|
|
"nojekyll": "touch ./docs/.nojekyll",
|
|
"clean": "rimraf lib",
|
|
"build": "run-s clean compile docs nojekyll"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "ssh://git@gitlab.riksolo.com:2224/riksolo/ts-osc.git"
|
|
},
|
|
"keywords": [
|
|
"osc",
|
|
"open",
|
|
"sound",
|
|
"control"
|
|
],
|
|
"author": "Rik Berkelder <mail@riksolo.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"osc-min": "^1.1.2",
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^3.0.2",
|
|
"typedoc": "^0.20.16",
|
|
"@types/node": "^14.14.22",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|