-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@karinjs/node-pty",
"description": "Fork pseudoterminals in Node.JS",
"author": {
"name": "Microsoft Corporation"
},
"version": "1.1.3",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/karinjs/node-pty.git"
},
"files": [
"dist"
],
"homepage": "https://github.com/karinjs/node-pty",
"bugs": {
"url": "https://github.com/karinjs/node-pty/issues"
},
"keywords": [
"pty",
"tty",
"terminal",
"pseudoterminal",
"forkpty",
"openpty"
],
"scripts": {
"build": "tsdown",
"install": "npx @karinjs/prebuild-install -r node --pkg_version=0.13.1 --pkg_name=node-pty-prebuilt-multiarch",
"pub": "npm publish --access public"
},
"engines": {
"node": ">=18.0.0 <25.0.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"neostandard": "^0.12.2",
"tsdown": "^0.14.1",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}