-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.6 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
{
"name": "import-sync",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nktnet1/import-sync"
},
"version": "2.2.6",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"tc": "jest --coverage",
"lint": "biome lint",
"format": "biome format",
"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": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@jest/globals": "^30.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.8.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "30.3.0",
"node-datachannel": "^0.32.3",
"node-fetch": "^3.3.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
},
"dependencies": {
"esm-sync": "^3.3.7"
},
"packageManager": "pnpm@11.1.2",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": "./dist/index.cjs",
"./package.json": "./package.json"
}
}