-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 814 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 814 Bytes
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
{
"name": "get-file-exports",
"version": "1.2.1",
"description": "Dynamic import for JavaScript and TypeScript files for both CommonJS and ECMAScript modules.",
"author": "alexandre-fernandez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexandre-fernandez/get-file-exports"
},
"keywords": [
"get",
"file",
"exports",
"parse",
"typescript",
"javascript",
"commonjs",
"ecmascript",
"module",
"cjs",
"mjs"
],
"main": "./src/index.cjs",
"types": "./src/index.d.ts",
"exports": {
"import": "./src/index.mjs",
"require": "./src/index.cjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"esbuild": "^0.15.13",
"node-eval": "^2.0.0"
},
"devDependencies": {
"@types/node": "^18.11.9"
}
}