-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 1.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@mdulghier/devtree",
"version": "0.1.6",
"description": "Worktree-aware multi-instance dev orchestration for Vite apps.",
"keywords": [
"devtree",
"portless",
"varlock",
"vite",
"vite-plus",
"worktree",
"tanstack-intent"
],
"homepage": "https://github.com/mdulghier/devtree#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mdulghier/devtree.git"
},
"bugs": {
"url": "https://github.com/mdulghier/devtree/issues"
},
"license": "MIT",
"bin": {
"devtree": "./bin/devtree.mjs"
},
"files": [
"bin",
"dist",
"README.md",
"skills",
"!skills/_artifacts"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepack": "npm run build",
"ci": "npm run check && npm test && npm run build",
"check": "tsc --noEmit -p tsconfig.json",
"test": "vp test run src/*.test.ts"
},
"dependencies": {
"dotenv": "^17.3.1",
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@tanstack/intent": "^0.0.23",
"typescript": "^5.7.2",
"vite": "8.0.1",
"vite-plus": "latest"
},
"peerDependencies": {
"@varlock/vite-integration": "*",
"vite": "*",
"varlock": "*",
"vite-plus": "*"
},
"peerDependenciesMeta": {
"@varlock/vite-integration": {
"optional": true
},
"vite": {
"optional": true
},
"varlock": {
"optional": true
},
"vite-plus": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.32.1"
}