build a basic ts module

This commit is contained in:
2023-05-06 16:29:00 -07:00
parent c7468f55bf
commit 376c480e02
5 changed files with 231 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "@doc-utils/color-themes",
"version": "0.1.0",
"publishConfig": {
"registry": "https://gitea.home.jbrumond.me/api/packages/doc-utils/npm/"
},
"scripts": {
"tsc": "tsc",
"clean": "rm -rf ./index.js ./index.js.map ./index.d.ts ./.tsbuildinfo"
},
"main": "./index.ts",
"devDependencies": {
"@types/node": "^18.16.3",
"typescript": "^5.0.4"
}
}