forked from privatenumber/tsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.34 KB
/
package.json
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
{
"name": "tsx",
"version": "0.0.0-semantic-release",
"description": "TypeScript Execute (tsx): Node.js enhanced with esbuild to run TypeScript & ESM files",
"keywords": [
"esbuild",
"runtime",
"node",
"cjs",
"commonjs",
"esm",
"typescript"
],
"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",
"./cjs": "./dist/cjs/index.cjs",
"./esm": "./dist/esm/index.mjs",
"./cli": "./dist/cli.mjs",
"./source-map": "./dist/source-map.cjs",
"./suppress-warnings": "./dist/suppress-warnings.cjs",
"./preflight": "./dist/preflight.cjs",
"./repl": "./dist/repl.mjs"
},
"scripts": {
"prepare": "pnpm simple-git-hooks",
"build": "pkgroll --target=node12.19 --minify",
"lint": "lint --node --cache .",
"type-check": "tsc --noEmit",
"test": "pnpm build && node ./dist/cli.mjs tests/index.ts",
"prepack": "pnpm build && clean-pkg-json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,mts,cjs,cts,json}": "pnpm lint"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"esbuild": "~0.19.10",
"get-tsconfig": "^4.7.2"
},
"optionalDependencies": {
"fsevents": "~2.3.3"
},
"devDependencies": {
"@ampproject/remapping": "^2.2.1",
"@pvtnbr/eslint-config": "^1.0.3",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/semver": "^7.5.6",
"@types/split2": "^4.2.3",
"cachedir": "^2.4.0",
"chokidar": "^3.5.3",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"cross-spawn": "^7.0.3",
"es-module-lexer": "^1.4.1",
"eslint": "^8.56.0",
"execa": "^8.0.1",
"fs-fixture": "^1.2.0",
"fs-require": "^1.6.0",
"get-node": "^15.0.0",
"kolorist": "^1.8.0",
"lint-staged": "^15.1.0",
"magic-string": "^0.30.5",
"manten": "^1.2.0",
"memfs": "^4.6.0",
"node-pty": "^1.0.0",
"outdent": "^0.8.0",
"pkgroll": "^2.0.1",
"semver": "^7.5.4",
"simple-git-hooks": "^2.9.0",
"split2": "^4.2.0",
"strip-ansi": "^7.1.0",
"type-fest": "^4.8.2",
"type-flag": "^3.0.0",
"typescript": "^5.3.2"
},
"eslintConfig": {
"extends": "@pvtnbr",
"ignorePatterns": [
"tests/fixtures"
]
}
}