-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.95 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
{
"name": "import-sync",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nktnet1/import-sync"
},
"version": "2.2.4-beta.5",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"tc": "jest --coverage",
"lint": "eslint --fix './**/*.ts'",
"tsc": "tsc --noEmit",
"build": "tsdown",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"keywords": [
"ecmascript",
"module",
"import",
"export",
"es6",
"esm",
"nodejs",
"commonjs",
"require",
"cjs",
"dyammic",
"runtime",
"sync",
"synchronous",
"comp1531"
],
"author": "Khiet Tam Nguyen",
"license": "MIT",
"description": "Synchronously import dynamic ECMAScript Modules similar to CommonJS require. Basic wrapper around esm for compatibility with both ESM and CJS projects in NodeJS.",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"node-datachannel": "^0.32.2",
"node-fetch": "^3.3.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsdown": "^0.21.9",
"typescript": "^6.0.3"
},
"dependencies": {
"esm-sync": "3.3.3"
},
"packageManager": "pnpm@10.33.0",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": "./dist/index.cjs",
"./package.json": "./package.json"
}
}