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", "name": "testosmaximus",
"version": "1.0.1", "version": "1.0.1-alpha",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "testosmaximus", "name": "testosmaximus",
"version": "1.0.1", "version": "1.0.1-alpha",
"license": "ISC" "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", "name": "testosmaximus",
"version": "1.0.1", "version": "1.0.1-alpha",
"description": "", "description": "",
"main": "index.js", "main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "build": "tsc"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"publishConfig": { "publishConfig": {
"registry": "https://git.chipperfluff.at/api/packages/projects/npm/" "registry": "https://git.chipperfluff.at/api/packages/projects/npm/"
},
"devDependencies": {
"typescript": "^5.8.3"
} }
} }