bring in sendosc and convert to npm workspaces

This commit is contained in:
2024-10-09 17:28:49 -05:00
parent efce70806f
commit 7b681be033
26 changed files with 3572 additions and 162 deletions
+13 -22
View File
@@ -1,30 +1,21 @@
{
"name": "@jwetzell/osc",
"version": "0.2.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "osc",
"version": "0.0.0",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "node --test --experimental-test-coverage"
"lint:check": "eslint ./",
"format:check": "prettier ./ --check",
"format:write": "prettier ./ --write"
},
"files": [
"dist"
"workspaces": [
"apps/*",
"packages/*"
],
"author": {
"name": "Joel Wetzell",
"email": "me@jwetzell.com",
"url": "https://jwetzell.com"
},
"repository": "https://github.com/jwetzell/osc-js",
"license": "ISC",
"devDependencies": {
"@types/node": "22.7.4",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.6.2"
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0"
}
}