-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 966 Bytes
/
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
{
"name": "tsm",
"version": "2.3.0",
"repository": "lukeed/tsm",
"description": "TypeScript Module Loader",
"license": "MIT",
"bin": "bin.js",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"exports": {
".": {
"import": "./loader.mjs",
"require": "./require.js"
},
"./config": "./config/index.js",
"./package.json": "./package.json"
},
"files": [
"bin.js",
"utils.js",
"require.js",
"loader.mjs",
"config"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "node build",
"types": "tsc --skipLibCheck"
},
"dependencies": {
"esbuild": "^0.15.16"
},
"devDependencies": {
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"typescript": "4.9.3"
},
"keywords": [
"esm",
"loader",
"typescript",
"loader hook",
"require hook",
"experimental-loader"
]
}