-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 945 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "first-chapter",
"private": true,
"version": "0.0.0",
"description": "Author site that lets readers finish chapter one in the browser, then follow a buy link.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "svelte-check --tsconfig ./tsconfig.json && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"engines": {
"node": ">=22"
},
"keywords": [
"svelte",
"vite",
"typescript",
"author",
"book",
"reader"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@tsconfig/svelte": "^5.0.8",
"eslint": "^10.9.1",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.11.0",
"svelte": "^5.56.10",
"svelte-check": "^4.7.6",
"typescript": "~6.0.2",
"typescript-eslint": "^8.68.0",
"vite": "^8.2.2"
},
"license": "MIT",
"dependencies": {
"marked": "^18.0.11"
}
}