This commit is contained in:
Darius
2025-11-17 21:22:16 +01:00
commit 17313da7f9
8 changed files with 286 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "@dpu/types",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"typescript",
"types",
"shared"
],
"author": "Darius",
"devDependencies": {
"typescript": "^5.3.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
}
}