-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "create-tauri-ui",
"version": "0.3.3",
"description": "🦀 Create modern Tauri desktop apps in just a few simple steps.",
"main": "index.js",
"author": "agmmnn",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"start": "unbuild --stub && node index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"format": "npx prettier --write . --ignore-path .gitignore",
"taze": "taze minor -r -w -i false -I",
"taze:major": "taze major -r -w -i false -I",
"updatesub": "git submodule update --init --recursive --remote"
},
"bin": {
"create-tauri-ui": "index.js"
},
"files": [
"index.js",
"templates",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agmmnn/tauri-ui.git"
},
"bugs": {
"url": "https://github.com/agmmnn/tauri-ui/issues"
},
"homepage": "https://github.com/agmmnn/tauri-ui",
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"picocolors": "^1.0.0",
"sisteransi": "^1.0.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^20.12.3",
"@types/prompts": "^2.4.9",
"commander": "^11.1.0",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"tauri-controls": "^0.1.3",
"taze": "^0.13.3",
"typescript": "^5.4.3",
"unbuild": "^1.2.1"
}
}