-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.68 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
{
"name": "@spotpatch/dev-server",
"version": "0.10.1",
"description": "Framework-neutral local development service for SpotPatch adapters.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/huanglvjing/spotpatch.git",
"directory": "packages/dev-server"
},
"homepage": "https://github.com/huanglvjing/spotpatch#readme",
"bugs": {
"url": "https://github.com/huanglvjing/spotpatch/issues"
},
"keywords": [
"spotpatch",
"development-server",
"react",
"developer-tools"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=20.19.0"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --sourcemap --clean",
"clean": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\"",
"dev": "tsup src/index.ts --format esm,cjs --dts --sourcemap --watch",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@spotpatch/agent": "workspace:^",
"@spotpatch/analyzer": "workspace:^",
"@spotpatch/compiler": "workspace:^",
"@spotpatch/shared": "workspace:^",
"launch-editor": "2.14.1",
"oxc-parser": "0.143.0",
"zod": "4.4.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}