59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "ts-osc",
|
|
"version": "0.2.5",
|
|
"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",
|
|
"copy": "copyfiles -u 1 -f ./src/**/*.d.ts ./lib",
|
|
"clean": "rimraf lib",
|
|
"build": "run-s clean compile copy docs",
|
|
"lint": "eslint ./src --ext .js,.ts",
|
|
"lint:fix": "npm run lint -- --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitlab.riksolo.com/riksolo/ts-osc/"
|
|
},
|
|
"keywords": [
|
|
"osc",
|
|
"open sound control",
|
|
"udp",
|
|
"sound control"
|
|
],
|
|
"author": "Rik Berkelder <mail@riksolo.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"osc-min": "^1.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.14.22",
|
|
"@typescript-eslint/eslint-plugin": "^4.14.0",
|
|
"@typescript-eslint/parser": "^4.14.0",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^7.18.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^10.5.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.2.1",
|
|
"rimraf": "^3.0.2",
|
|
"typedoc": "^0.20.16",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": [
|
|
"lint-staged"
|
|
]
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,ts}": "eslint ./src --fix --ext .js,.ts"
|
|
}
|
|
}
|