-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.45 KB
/
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
52
53
54
55
56
57
58
59
60
61
{
"name": "esm-require-directory",
"version": "3.0.7",
"description": "require a directory of modules using es6 modules require",
"keywords": [
"esm",
"es6",
"import",
"require",
"directory",
".mjs"
],
"homepage": "https://github.com/kmalakoff/esm-require-directory#readme",
"bugs": {
"url": "https://github.com/kmalakoff/esm-require-directory/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmalakoff/esm-require-directory.git"
},
"license": "MIT",
"author": "Kevin Malakoff",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.esm.mjs",
"require": "./dist/cjs/index.cjs.cjs",
"types": "./dist/types/index.esm.d.ts"
},
"./*": "./*"
},
"main": "dist/cjs/index.cjs.cjs",
"module": "dist/esm/index.esm.mjs",
"types": "dist/types/index.esm.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"fs-iterator": "^5.2.10"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"lodash.size": "^4.2.0",
"pinkie-promise": "^2.0.1"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.esm.ts"
}
}