Initial commit

This commit is contained in:
aNNiMON 2024-02-28 20:07:54 +02:00
commit d72b431453
6 changed files with 1990 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.parcel-cache
node_modules
dist
*.sh

16
index.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Rpy Player. Everlasting Summer</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Online RenPy scenarios player">
</head>
<body>
<script type="module" src="./src/main.ts"></script>
</body>
</html>

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "rpy-player-ts",
"version": "0.1.0",
"description": "RenPy scripts player",
"scripts": {
"dev": "parcel",
"start": "parcel serve ./index.html",
"build": "parcel build ./index.html --dist-dir ./dist --public-url ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typescript",
"javascriptm",
"project",
"parser"
],
"author": "aNNiMON",
"license": "MIT",
"dependencies": {
"typescript": "^5.3.3"
},
"devDependencies": {
"parcel": "^2.12.0"
}
}

1937
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

1
src/main.ts Normal file
View File

@ -0,0 +1 @@
console.log("It works!");

7
tsconfig.json Normal file
View File

@ -0,0 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"experimentalDecorators": true
},
"include": ["src/**/*"]
}