forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"name": "@remix-run/node-tsx",
"version": "0.1.1",
"description": "Run Node.js with TypeScript and JSX syntax support",
"author": "Michael Jackson <mjjackson@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/remix-run/remix.git",
"directory": "packages/node-tsx"
},
"homepage": "https://github.com/remix-run/remix/tree/main/packages/node-tsx#readme",
"files": [
"LICENSE",
"README.md",
"dist",
"src",
"!src/**/*.test.ts"
],
"type": "module",
"engines": {
"node": ">=24.3.0"
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./load-module": "./src/load-module.ts"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./load-module": {
"types": "./dist/load-module.d.ts",
"default": "./dist/load-module.js"
}
}
},
"scripts": {
"build": "tsgo -p tsconfig.build.json",
"clean": "git clean -fdX",
"prepublishOnly": "pnpm run build",
"test": "node --disable-warning=ExperimentalWarning --test './src/**/*.test.ts'",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"get-tsconfig": "^4.13.6",
"oxc-transform": "^0.121.0"
},
"devDependencies": {
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:"
},
"keywords": [
"remix",
"node",
"jsx",
"tsx",
"loader",
"test"
]
}