feat: initial commit

This commit is contained in:
2026-08-19 21:23:42 +02:00
parent d87042cebb
commit f33bfd81f9
30 changed files with 5527 additions and 0 deletions

47
package.json Normal file
View File

@@ -0,0 +1,47 @@
{
"name": "ReSTIR Presentation",
"description": "The HTML Presentation Framework",
"homepage": "https://revealjs.com",
"subdomain": "revealjs",
"license": "MIT",
"type": "module",
"files": [
"dist",
"css",
"js",
"LICENSE",
"README.md",
"index.html",
"demo.html"
],
"scripts": {
"dev": "npm run start",
"start": "vite",
"prepack": "npm run build",
"build:core": "tsc && vite build && vite build -c vite.config.styles.ts && node scripts/add-banner.js dist/reveal.js",
"build:es5": "npm run build && node scripts/build-es5.js",
"build:styles": "vite build -c vite.config.styles.ts",
"build": "vite build",
"package": "node scripts/zip.js",
"test": "node scripts/test.js",
"react:build": "npm run --prefix react build",
"react:demo": "npm run --prefix react demo",
"react:test": "npm run --prefix react test"
},
"devDependencies": {
"@catppuccin/highlightjs": "^1.0.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^25.9.1",
"@vitejs/devtools": "^0.3.4",
"highlight.js": "^11.11.1",
"typescript": "~6.0.2",
"vite": "^8.0.12",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"@lucide/svelte": "^1.23.0",
"reveal.js": "^6.0.1",
"svelte": "^5.56.4"
}
}