initial commit

This commit is contained in:
2024-10-02 20:46:17 -05:00
commit 4b49e0f9fe
14 changed files with 796 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "@jwetzell/osc",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"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.5.5",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.6.2"
}
}