-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
79 lines (79 loc) · 1.61 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
{
"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": "esbuild-kit/tsx",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./dist/loader.js",
"./cli": "./dist/cli.js",
"./suppress-warnings": "./dist/suppress-warnings.cjs",
"./repl": "./dist/repl.js"
},
"bin": "./dist/cli.js",
"scripts": {
"build": "pkgroll --target=node12.19 --minify",
"lint": "eslint --cache .",
"pretest": "npm run build",
"test": "node ./dist/cli.js tests/index.ts",
"prepublishOnly": "npm test"
},
"dependencies": {
"@esbuild-kit/cjs-loader": "^2.0.1",
"@esbuild-kit/core-utils": "^1.2.0",
"@esbuild-kit/esm-loader": "^2.1.3"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.22.0",
"@types/cross-spawn": "^6.0.2",
"@types/node": "^17.0.34",
"@types/semver": "^7.3.9",
"chokidar": "^3.5.3",
"cleye": "^1.2.0",
"cross-spawn": "^7.0.3",
"eslint": "^8.15.0",
"execa": "^6.1.0",
"get-node": "^13.0.1",
"manten": "^0.1.0",
"pkgroll": "^1.3.1",
"semver": "^7.3.7",
"typescript": "^4.6.4"
},
"eslintConfig": {
"extends": "@pvtnbr",
"ignorePatterns": [
"tests/fixtures"
],
"rules": {
"@typescript-eslint/no-shadow": [
"error",
{
"allow": [
"describe",
"runTestSuite"
]
}
]
}
}
}