-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 754 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 754 Bytes
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
{
"name": "web-apps",
"author": "simshadows <contact@simshadows.com>",
"version": "0.0.1",
"license": "AGPLv3",
"description": "A collection of various small web apps.",
"keywords": [],
"packageManager": "yarn@4.14.1",
"type": "module",
"scripts": {
"dev": "astro dev --port 8001",
"start": "astro dev --port 8001",
"build": "astro check && tsc --noEmit && astro build",
"typecheck": "astro check && tsc --noEmit",
"serve": "astro preview --port 8001"
},
"workspaces": [
"src/pages/*/_workspace"
],
"dependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/ts-plugin": "1.10.7",
"@fontsource/roboto": "5.2.10",
"astro": "6.1.9",
"normalize.css": "8.0.1",
"typescript": "6.0.3"
}
}