1 | {
|
2 | "name": "builtin-modules",
|
3 | "version": "4.0.0",
|
4 | "description": "A static list of the Node.js builtin modules from the latest Node.js version",
|
5 | "license": "MIT",
|
6 | "repository": "sindresorhus/builtin-modules",
|
7 | "funding": "https://github.com/sponsors/sindresorhus",
|
8 | "author": {
|
9 | "name": "Sindre Sorhus",
|
10 | "email": "sindresorhus@gmail.com",
|
11 | "url": "https://sindresorhus.com"
|
12 | },
|
13 | "type": "module",
|
14 | "exports": {
|
15 | "types": "./index.d.ts",
|
16 | "default": "./index.js"
|
17 | },
|
18 | "sideEffects": false,
|
19 | "engines": {
|
20 | "node": ">=18.20"
|
21 | },
|
22 | "scripts": {
|
23 | "//test": "xo && ava && tsd",
|
24 | "test": "ava && tsd",
|
25 | "make": "node make.js"
|
26 | },
|
27 | "files": [
|
28 | "index.js",
|
29 | "index.d.ts",
|
30 | "builtin-modules.json"
|
31 | ],
|
32 | "keywords": [
|
33 | "builtin",
|
34 | "built-in",
|
35 | "builtins",
|
36 | "node",
|
37 | "modules",
|
38 | "core",
|
39 | "bundled",
|
40 | "list",
|
41 | "array",
|
42 | "names"
|
43 | ],
|
44 | "devDependencies": {
|
45 | "ava": "^6.1.2",
|
46 | "tsd": "^0.31.0",
|
47 | "xo": "^0.58.0"
|
48 | }
|
49 | }
|