-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "irclog-svelte",
"version": "1.0.0",
"license": "Apache-2.0",
"homepage": "https://github.com/irclogs/svelte/",
"type": "module",
"config": {
"port": "8000"
},
"scripts": {
"check:all": "prettier --check src/ && svelte-check && tsc --noEmit",
"build": "vite build",
"build:production": "vite build --mode production",
"dev": "vite",
"preview": "vite preview",
"prettier:check": "prettier --check src/",
"prettier:fix": "prettier --write src/"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"svelte-check": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.5"
},
"dependencies": {
"hashids": "^2.3.0",
"linkifyjs": "^4.2.0",
"svelte": "^5.15.0"
},
"prettier": {
"printWidth": 120,
"plugins": [
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
},
"packageManager": "pnpm@latest",
"engines": {
"pnpm": "^9.0.0"
}
}