forked from privatenumber/tsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.79 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
{
"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": "picnichealth/tsx",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"type": "module",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": "./dist/loader.js",
"./cli": "./dist/cli.js",
"./suppress-warnings": "./dist/suppress-warnings.cjs",
"./preflight": "./dist/preflight.cjs",
"./repl": "./dist/repl.js"
},
"bin": "./dist/cli.js",
"scripts": {
"build": "pkgroll --target=node12.19 --minify",
"type-check": "tsc --noEmit",
"test": "npm run build && node ./dist/cli.js tests/index.ts",
"prepack": "npm run build && clean-pkg-json"
},
"dependencies": {
"@esbuild-kit/cjs-loader": "^2.4.2",
"@esbuild-kit/core-utils": "^3.0.0",
"@esbuild-kit/esm-loader": "^2.5.5"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.33.0",
"@types/cross-spawn": "^6.0.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/semver": "^7.3.13",
"chokidar": "^3.5.3",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.1",
"cross-spawn": "^7.0.3",
"eslint": "^8.31.0",
"execa": "^6.1.0",
"fs-fixture": "^1.2.0",
"get-node": "^13.5.0",
"kolorist": "^1.6.0",
"lint-staged": "^13.1.0",
"manten": "^0.6.0",
"node-pty": "^0.10.1",
"pkgroll": "^1.8.0",
"semver": "^7.3.8",
"simple-git-hooks": "^2.8.1",
"strip-ansi": "^7.0.1",
"type-flag": "^3.0.0",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "@pvtnbr",
"ignorePatterns": [
"tests/fixtures"
]
}
}