added typescript, tscc and tsickle as dependencies

This commit is contained in:
Hendrik Brummermann 2021-12-12 01:14:50 +01:00
parent 42bbb051ea
commit 9ec873c177
3 changed files with 98 additions and 0 deletions

1
.gitignore vendored
View file

@ -48,3 +48,4 @@ build_server_xmlconf
/*.csr
/map.map
/hs_err_*.log
/node_modules/

61
package-lock.json generated Normal file
View file

@ -0,0 +1,61 @@
{
"name": "stendhal",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@types/minimist": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz",
"integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="
},
"minimist": {
"version": "0.0.10",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
},
"optimist": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
"requires": {
"minimist": "~0.0.1",
"wordwrap": "~0.0.2"
}
},
"tscc": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/tscc/-/tscc-0.0.2.tgz",
"integrity": "sha1-9PDwHGrawMrlusTwCTqg3OlhF84=",
"requires": {
"optimist": "~0.6.0",
"typescript": "~0.9.1-1"
},
"dependencies": {
"typescript": {
"version": "0.9.7",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-0.9.7.tgz",
"integrity": "sha1-ajHh3dfM1ExjxBa6tfIdWNuzytQ="
}
}
},
"tsickle": {
"version": "0.43.0",
"resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.43.0.tgz",
"integrity": "sha512-n0lgIQBLliB7EFVTDpqrd/GjyB9I3NCodfX4R3NE/H73PQvGjgrkSZc8RVcWBG6s1MDiFjYDHIezYkuh8GYslw==",
"requires": {
"@types/minimist": "^1.2.1"
}
},
"typescript": {
"version": "4.5.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.3.tgz",
"integrity": "sha512-eVYaEHALSt+s9LbvgEv4Ef+Tdq7hBiIZgii12xXJnukryt3pMgJf6aKhoCZ3FWQsu6sydEnkg11fYXLzhLBjeQ=="
},
"wordwrap": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
}
}
}

36
package.json Normal file
View file

@ -0,0 +1,36 @@
{
"name": "stendhal",
"version": "1.0.0",
"description": "Stendhal is a fun friendly and free multiplayer online adventure game with an old school feel. ",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/arianne/stendhal.git"
},
"keywords": [
"game",
"java",
"rpg",
"mmorpg",
"game-server"
],
"author": "Arianne Project",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/arianne/stendhal/issues"
},
"homepage": "https://arianne-project.org",
"private": true,
"dependencies": {
"tscc": "0.0.2",
"tsickle": "^0.43.0",
"typescript": "^4.5.3"
}
}