-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.81 KB
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": "vite-plugin-tauri",
"type": "module",
"version": "0.2.2",
"private": true,
"description": "A Vite plugin to seamlessly integrate with Tauri.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/vite-plugin-tauri#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/vite-plugin-tauri.git"
},
"bugs": {
"url": "https://github.com/stacksjs/vite-plugin-tauri/issues"
},
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx --bun pickier .",
"lint:fix": "bunx --bun pickier . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"publish": "cd packages/vite-plugin-tauri && bun publish",
"prepublishOnly": "cd packages/vite-plugin-tauri && bun --bun run build",
"release": "bun run changelog && bunx bumpp package.json ./packages/**/package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit",
"dev:docs": "bun --bun vitepress dev docs",
"build:docs": "bun --bun vitepress build docs",
"preview:docs": "bun --bun vitepress preview docs",
"format": "bunx --bun pickier . --format",
"format:fix": "bunx --bun pickier . --format --write",
"postinstall": "bunx git-hooks"
},
"devDependencies": {
"@stacksjs/docs": "^0.70.23",
"@types/bun": "^1.2.11",
"bumpp": "^10.1.0",
"bun-plugin-dtsx": "^0.21.9",
"changelogen": "^0.6.1",
"typescript": "^5.8.3",
"bun-git-hooks": "^0.3.1"
},
"workspaces": [
"example/*",
"packages/*"
],
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}