diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-04-12 15:52:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 15:52:26 +0100 |
commit | ad97d4350c55055c3fcf084915a0a067c09939da (patch) | |
tree | 885baa92f3aa0a50ef0e5226e89aaabe7296ad8f /bskyembed/package.json | |
parent | 24bd3d6986a8080a34836b34ee1dbd88357d1cb5 (diff) | |
download | voidsky-ad97d4350c55055c3fcf084915a0a067c09939da.tar.zst |
[Embeds] Create vite project and add to build pipeline (#3448)
* add bskyembed vite app * create build script (temp until embedr is ready)
Diffstat (limited to 'bskyembed/package.json')
-rw-r--r-- | bskyembed/package.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/bskyembed/package.json b/bskyembed/package.json new file mode 100644 index 000000000..048c721eb --- /dev/null +++ b/bskyembed/package.json @@ -0,0 +1,21 @@ +{ + "name": "bskyembed", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "lint": "eslint --cache --ext .js,.jsx,.ts,.tsx src" + }, + "dependencies": { + "preact": "^10.4.8" + }, + "devDependencies": { + "@prefresh/vite": "^1.2.1", + "eslint": "^8.19.0", + "eslint-config-preact": "^1.3.0", + "eslint-plugin-simple-import-sort": "^12.0.0", + "typescript": "^4.0.5", + "vite": "^1.0.0-rc.13", + "vite-tsconfig-paths": "^4.3.2" + } +} |