-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vite-plugin-local",
"type": "module",
"version": "0.4.1",
"description": "A Vite plugin to enable a development environment for minimalists.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/vite-plugin-local#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/vite-plugin-local.git"
},
"bugs": {
"url": "https://github.com/stacksjs/vite-plugin-local/issues"
},
"keywords": ["typescript", "vite", "plugin", "local", "vite-plugin-local", "development", "environment", "reverse-proxy", "ssl", "https", "rpx", "tlsx", "minimalists"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx --bun eslint --flag unstable_ts_config .",
"lint:fix": "bunx --bun eslint --flag unstable_ts_config . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun run changelog && bunx bumpp 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"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.5",
"@shikijs/vitepress-twoslash": "^1.26.1",
"@stacksjs/eslint-config": "^3.12.0-beta.4",
"@stacksjs/rpx": "^0.9.1",
"@types/bun": "^1.1.14",
"@vite-pwa/vitepress": "^0.5.3",
"bumpp": "^9.9.2",
"bun-plugin-dtsx": "^0.21.9",
"changelogen": "^0.5.7",
"lint-staged": "^15.3.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unocss": "^0.65.3",
"unplugin-icons": "^0.22.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.7",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-vue-devtools": "^7.6.8",
"vitepress": "^1.5.0"
},
"overrides": {
"unconfig": "0.6.0"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint --flag unstable_ts_config . --fix"
}
}