initial commit

This commit is contained in:
2024-12-05 17:47:04 -06:00
commit 23b83eb009
17 changed files with 3694 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "@jwetzell/acn",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "node --test --experimental-test-coverage"
},
"files": [
"dist"
],
"author": {
"name": "Joel Wetzell",
"email": "me@jwetzell.com",
"url": "https://jwetzell.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwetzell/acn-js.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "22.7.5",
"rimraf": "6.0.1",
"typescript": "5.6.3"
}
}