-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.11 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "tsx",
"version": "0.0.0-semantic-release",
"description": "TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files",
"keywords": [
"cli",
"runtime",
"node",
"cjs",
"commonjs",
"esm",
"typescript",
"typescript runner"
],
"license": "MIT",
"repository": "privatenumber/tsx",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"type": "module",
"bin": "./dist/cli.mjs",
"exports": {
"./package.json": "./package.json",
".": "./dist/loader.mjs",
"./patch-repl": "./dist/patch-repl.cjs",
"./cjs": "./dist/cjs/index.cjs",
"./cjs/api": {
"import": {
"types": "./dist/cjs/api/index.d.mts",
"default": "./dist/cjs/api/index.mjs"
},
"require": {
"types": "./dist/cjs/api/index.d.cts",
"default": "./dist/cjs/api/index.cjs"
}
},
"./esm": "./dist/esm/index.mjs",
"./esm/api": {
"import": {
"types": "./dist/esm/api/index.d.mts",
"default": "./dist/esm/api/index.mjs"
},
"require": {
"types": "./dist/esm/api/index.d.cts",
"default": "./dist/esm/api/index.cjs"
}
},
"./cli": "./dist/cli.mjs",
"./suppress-warnings": "./dist/suppress-warnings.cjs",
"./preflight": "./dist/preflight.cjs",
"./repl": "./dist/repl.mjs"
},
"packageManager": "pnpm@10.9.0",
"homepage": "https://tsx.hirok.io",
"scripts": {
"build": "pkgroll --minify",
"benchmark": "pnpm build && node ./dist/cli.mjs scripts/benchmark/index.ts",
"lint": "lintroll --node --cache --ignore-pattern 'docs/*.md' .",
"type-check": "tsc",
"test": "pnpm build && node ./dist/cli.mjs tests/index.ts",
"prepack": "pnpm build && clean-pkg-json",
"prepare": "skills-npm",
"docs:dev": "pnpm --filter=docs dev",
"docs:build": "pnpm --filter=docs build",
"docs:preview": "pnpm --filter=docs preview"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"esbuild": "~0.28.0"
},
"optionalDependencies": {
"fsevents": "~2.3.3"
},
"devDependencies": {
"@ampproject/remapping": "^2.3.0",
"@types/cross-spawn": "^6.0.6",
"@types/is-glob": "^4.0.4",
"@types/node": "^22.15.29",
"@types/split2": "^4.2.3",
"append-transform": "^2.0.0",
"cachedir": "^2.4.0",
"chokidar": "^3.6.0",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"cross-spawn": "^7.0.6",
"es-module-lexer": "^1.5.4",
"execa": "^8.0.1",
"fs-fixture": "^2.14.0",
"fs-require": "^1.6.0",
"get-node": "^15.0.4",
"get-option-value": "^1.0.0",
"get-tsconfig": "5.0.0-beta.5",
"is-glob": "^4.0.3",
"kolorist": "^1.8.0",
"lintroll": "^1.8.1",
"magic-string": "^0.30.10",
"manten": "^2.0.0",
"memfs": "^4.57.2",
"outdent": "^0.8.0",
"pkgroll": "^2.4.1",
"proxyquire": "^2.1.3",
"pty-spawn": "^1.1.1",
"semantic-release": "25.0.6",
"skills-npm": "^1.2.0",
"strip-ansi": "^7.2.0",
"type-fest": "^4.20.1",
"type-flag": "^3.0.0",
"typescript": "^5.5.2"
},
"pnpm": {
"packageExtensions": {
"node-pty": {
"//": "https://github.com/microsoft/node-pty/issues/777",
"dependencies": {
"node-gyp": "11.0.0"
}
}
},
"onlyBuiltDependencies": [
"node-pty",
"esbuild"
]
}
}