forked from untitaker/mastodon-bookmark-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 902 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"type": "module",
"main": "index.tsx",
"name": "mastodon-bookmark-rss",
"version": "0.1.0",
"description": "An app to subscribe to your Mastodon bookmarks via RSS",
"repository": "[email protected]:untitaker/mastodon-bookmark-rss.git",
"author": "Markus Unterwaditzer <[email protected]>",
"license": "MIT",
"dependencies": {
"@tsconfig/svelte": "^3.0.0",
"esbuild": "^0.17.2",
"esbuild-svelte": "^0.7.3",
"purecss": "^3.0.0",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-preprocess": "^5.0.1"
},
"scripts": {
"build": "node buildscript.js",
"typecheck": "svelte-check",
"dev": "find src/ | entr -sr 'yarn build && cargo run'",
"fmt": "prettier --write src/ && cargo fmt"
},
"devDependencies": {
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0"
},
"volta": {
"node": "18.13.0"
}
}