Initial commit

This commit is contained in:
Bertrand Ernst 2024-06-10 10:39:07 +02:00
commit 8894b2944d
5 changed files with 62 additions and 0 deletions

2
.gitignore vendored Normal file

@ -0,0 +1,2 @@
.idea
node_modules

1
README.md Normal file

@ -0,0 +1 @@
# This is a test repo for gitea actions

3
index.ts Normal file

@ -0,0 +1,3 @@
const helloMessage: string = 'Hello there !';
console.log(helloMessage);

38
package-lock.json generated Normal file

@ -0,0 +1,38 @@
{
"name": "test",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "test",
"version": "1.0.0",
"license": "ISC",
"devDependencies": {
"typescript": "^5.4.5"
}
},
"node_modules/typescript": {
"version": "5.4.5",
"resolved": "https://nexus.aegaeon-it.com/repository/npm-group-public/typescript/-/typescript-5.4.5.tgz",
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
},
"dependencies": {
"typescript": {
"version": "5.4.5",
"resolved": "https://nexus.aegaeon-it.com/repository/npm-group-public/typescript/-/typescript-5.4.5.tgz",
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
"dev": true
}
}
}

18
package.json Normal file

@ -0,0 +1,18 @@
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://demo.gitea.com/bernst/test.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"typescript": "^5.4.5"
}
}