-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@swc-node/register",
"version": "1.11.1",
"description": "SWC node register",
"keywords": [
"swc",
"babel",
"ts-node",
"napi-rs",
"uglify",
"node-rs",
"napi-rs",
"napi",
"n-api",
"esbuild",
"tsc",
"webpack"
],
"author": "LongYinan <github@lyn.one>",
"homepage": "https://github.com/swc-project/swc-node",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"lib",
"esm",
"README.md",
"LICENSE",
"*.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/swc-node.git"
},
"bugs": {
"url": "https://github.com/swc-project/swc-node/issues"
},
"dependencies": {
"@swc-node/core": "^1.14.1",
"@swc-node/sourcemap-support": "^0.6.1",
"colorette": "^2.0.20",
"debug": "^4.4.1",
"oxc-resolver": "^11.6.1",
"pirates": "^4.0.7",
"tslib": "^2.8.1"
},
"peerDependencies": {
"@swc/core": ">= 1.4.13",
"typescript": ">= 4.3"
},
"devDependencies": {
"@swc/core": "^1.13.3",
"@swc/helpers": "^0.5.17",
"@types/debug": "^4.1.12",
"lodash": "^4.17.21",
"sinon": "^21.0.0",
"typescript": "^6.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
},
"exports": {
".": {
"node": "./index.js"
},
"./read-default-tsconfig": {
"node": "./lib/read-default-tsconfig.js"
},
"./register": {
"require": "./lib/register.js"
},
"./esm": {
"import": "./esm/esm.mjs"
},
"./esm-register": {
"import": "./esm/esm-register.mjs"
}
}
}