-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.49 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
{
"name": "ts-directly",
"version": "2.1.2",
"description": "Let Node execute TypeScript files directly with the compiler you installed, support SWC, esbuild, sucrase, tsc",
"license": "MIT",
"author": "Kaciras <Kaciras@outlook.com>",
"repository": {
"type": "git",
"url": "https://github.com/Kaciras/ts-directly"
},
"keywords": [
"loader",
"compiler",
"node",
"esm",
"typescript"
],
"engines": {
"node": ">=18.19"
},
"type": "module",
"exports": {
".": "./lib/loader.js",
"./register": "./lib/register.js"
},
"files": [
"lib/*.js",
"lib/loader.d.ts"
],
"scripts": {
"build": "tsc --build",
"test": "node --experimental-import-meta-resolve --import ./lib/register.js --test test/*.spec.ts ",
"test:only": "node --experimental-import-meta-resolve --import ./lib/register.js --test --test-only test/*.spec.ts"
},
"dependencies": {
"tsconfck": "^3.1.4"
},
"devDependencies": {
"@kaciras/eslint-config-core": "^3.2.0",
"@kaciras/eslint-config-typescript": "^3.2.0",
"@types/node": "^22.8.2",
"@types/tar-fs": "^2.0.4",
"esbench": "^0.7.0",
"eslint": "^9.13.0",
"tar-fs": "^3.0.6"
},
"peerDependencies": {
"@swc/core": ">=1",
"esbuild": "*",
"oxc-transform": "*",
"sucrase": ">=3",
"typescript": ">=5"
},
"peerDependenciesMeta": {
"@swc/core": {
"optional": true
},
"oxc-transform": {
"optional": true
},
"esbuild": {
"optional": true
},
"sucrase": {
"optional": true
},
"typescript": {
"optional": true
}
}
}