-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
54
55
56
57
58
{
"name": "typ",
"version": "0.1.0",
"description": "Modular text editor",
"homepage": "https://github.com/yvvki/Typ#readme",
"bugs": {
"url": "https://github.com/yvvki/Typ/issues"
},
"license": "(ISC OR BSD-2-Clause)",
"author": {
"name": "Yuuki Rika",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/yvvki/Typ.git"
},
"engines": {
"node": ">=20.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/static/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "echo 'Run \"npm run qwik add\" to install a server adapter'",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.3.0",
"@builder.io/qwik-city": "^1.3.0",
"@tauri-apps/cli": "^1.5.0",
"@types/eslint": "^8.44.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-plugin-qwik": "^1.3.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0",
"undici": "^5.26.0",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^4.2.0"
},
"optionalDependencies": {
"@typescript-eslint/utils": "^6.14.0",
"sharp": "^0.33.0"
}
}