-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "simlock",
"version": "0.3.0",
"description": "Control plane for iOS simulators and Android emulators.",
"keywords": [
"agents",
"emulators",
"simulators"
],
"homepage": "https://github.com/callstackincubator/simlock",
"bugs": {
"url": "https://github.com/callstackincubator/simlock/issues"
},
"license": "MIT",
"author": "Szymon Chmal <szymon@chmal.it> (V3RON)",
"repository": {
"type": "git",
"url": "https://github.com/callstackincubator/simlock"
},
"bin": {
"simlock": "dist/cli/main.js"
},
"files": [
"dist",
"!dist/e2e",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts"
],
"type": "module",
"exports": {
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./admin": {
"types": "./dist/admin/index.d.ts",
"default": "./dist/admin/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:e2e": "tsc -p e2e/fake-driver/tsconfig.json",
"test": "vitest run --project unit",
"test:e2e": "pnpm run build && pnpm run build:e2e && vitest run --project e2e --tags-filter='!slow'",
"test:e2e:slow": "pnpm run build && pnpm run build:e2e && vitest run --project e2e",
"typecheck": "tsc --noEmit",
"typecheck:e2e": "pnpm run build && tsc -p e2e/tsconfig.typecheck.json",
"lint": "oxlint src e2e",
"fallow": "fallow",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"prepare": "lefthook install",
"check": "pnpm run typecheck && pnpm run typecheck:e2e && pnpm run lint && pnpm run format:check && pnpm run test && pnpm run test:e2e",
"release": "release-it"
},
"dependencies": {
"@hono/node-server": "2.0.10",
"@hono/zod-validator": "^0.9.1",
"@modelcontextprotocol/sdk": "1.29.0",
"hono": "^4.13.5",
"ws": "8.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@release-it/conventional-changelog": "^11.0.1",
"@types/node": "^26.1.1",
"@types/ws": "8.18.1",
"fallow": "^3.6.0",
"lefthook": "^2.1.10",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"release-it": "^20.2.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.22.0",
"onFail": "download"
}
},
"engines": {
"node": ">=22"
},
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"requireBranch": "main",
"requireUpstream": true,
"commitMessage": "chore(release): ${version}",
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"hooks": {
"before:init": "pnpm check"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits"
},
"infile": "CHANGELOG.md"
}
}
}
}