-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.35 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.35 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
{
"name": "pty-spawn",
"version": "0.0.0-semantic-release",
"description": "Tiny pseudo-terminal spawning for humans",
"keywords": [
"pty",
"terminal",
"spawn",
"subprocess",
"node-pty"
],
"license": "MIT",
"repository": "privatenumber/pty-spawn",
"funding": "https://github.com/privatenumber/pty-spawn?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"imports": {
"#pty-spawn": {
"dev": "./src/index.ts",
"default": "./dist/index.mjs"
},
"#pty-host": {
"dev": "./src/pty-host.ts",
"default": "./dist/pty-host.mjs"
}
},
"packageManager": "pnpm@10.19.0",
"scripts": {
"build": "pkgroll",
"dev": "node --watch -C dev tests/index.ts",
"test": "node tests/index.ts",
"lint": "lintroll --cache --git --node",
"type-check": "tsc",
"prepack": "pnpm build && clean-pkg-json"
},
"engines": {
"node": ">=20.20.0"
},
"dependencies": {
"node-pty": "1.2.0-beta.10"
},
"devDependencies": {
"@types/node": "^24.10.9",
"clean-pkg-json": "^1.3.0",
"concurrently": "^9.2.1",
"lintroll": "^1.26.1",
"manten": "2.0.0-beta.2",
"pkgroll": "^2.25.1",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"node-pty"
]
}
}