Copy stuff over from the template

This commit is contained in:
Badgers
2025-07-09 00:49:10 -04:00
commit 535788e75b
13 changed files with 6421 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"description": "Provides a bare-bones Foundry module template repo to get set up with using the TyphonJS Runtime Library and Svelte with ES Modules.",
"license": "MIT",
"private": true,
"type": "module",
"author": "YOUR INFO HERE",
"contributors": [
"YOUR INFO HERE"
],
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/standard/*"
},
"dependencies": {
"@typhonjs-fvtt/runtime": "^0.2.0",
"@typhonjs-fvtt/standard": "^0.2.0",
"svelte": "^4.2.19"
},
"devDependencies": {
"@typhonjs-config/eslint-config": "^0.6.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8"
},
"browserslist": [">5%", "not IE 11"],
"scripts": {
"build": "vite build",
"dev": "vite",
"eslint": "eslint ."
}
}