1 | {
|
2 | "name": "read-pkg",
|
3 | "version": "9.0.1",
|
4 | "description": "Read a package.json file",
|
5 | "license": "MIT",
|
6 | "repository": "sindresorhus/read-pkg",
|
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"
|
21 | },
|
22 | "scripts": {
|
23 | "test": "xo && tsd && cd test && ava"
|
24 | },
|
25 | "files": [
|
26 | "index.js",
|
27 | "index.d.ts"
|
28 | ],
|
29 | "keywords": [
|
30 | "json",
|
31 | "read",
|
32 | "parse",
|
33 | "file",
|
34 | "fs",
|
35 | "graceful",
|
36 | "load",
|
37 | "package",
|
38 | "normalize"
|
39 | ],
|
40 | "dependencies": {
|
41 | "@types/normalize-package-data": "^2.4.3",
|
42 | "normalize-package-data": "^6.0.0",
|
43 | "parse-json": "^8.0.0",
|
44 | "type-fest": "^4.6.0",
|
45 | "unicorn-magic": "^0.1.0"
|
46 | },
|
47 | "devDependencies": {
|
48 | "ava": "^5.3.1",
|
49 | "tsd": "^0.29.0",
|
50 | "xo": "^0.56.0"
|
51 | }
|
52 | }
|