-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@farming-labs/mini-dev",
"version": "0.0.8-beta.2",
"description": "A minimal dev server with HMR for TypeScript/JS/CSS",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mini-dev": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"types": "./dist/env-client.d.ts",
"import": "./dist/env-client.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc-alias -p tsconfig.json",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"bump": "bumpp",
"bump:patch": "bumpp --release patch --yes",
"bump:minor": "bumpp --release minor --yes",
"bump:major": "bumpp --release major --yes",
"release": "pnpm build && bumpp && pnpm publish --access public --no-git-checks",
"release:beta": "pnpm build && bumpp --preid beta && pnpm publish --access public --tag beta --no-git-checks"
},
"keywords": [
"dev-server",
"hmr",
"typescript",
"vite-alternative"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chokidar": "^4.0.1",
"esbuild": "^0.24.0",
"open": "^11.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"bumpp": "^10.2.3",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"packageManager": "pnpm@9.15.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/farming-labs/mini-dev.git"
},
"homepage": "https://github.com/farming-labs/mini-dev#readme",
"bugs": {
"url": "https://github.com/farming-labs/mini-dev/issues"
}
}