Update package.json and package-lock.json to version 1.0.1-alpha and adjust project structure

This commit is contained in:
Dominik Krenn 2025-07-17 23:07:19 +02:00
parent ec6f2e6b4f
commit 370a89b41b
2 changed files with 30 additions and 6 deletions

View File

@ -1,13 +1,30 @@
{
"name": "testosmaximus",
"version": "1.0.1",
"version": "1.0.1-alpha",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "testosmaximus",
"version": "1.0.1",
"license": "ISC"
"version": "1.0.1-alpha",
"license": "ISC",
"devDependencies": {
"typescript": "^5.8.3"
}
},
"node_modules/typescript": {
"version": "5.8.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}

View File

@ -1,15 +1,22 @@
{
"name": "testosmaximus",
"version": "1.0.1",
"version": "1.0.1-alpha",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"publishConfig": {
"registry": "https://git.chipperfluff.at/api/packages/projects/npm/"
},
"devDependencies": {
"typescript": "^5.8.3"
}
}