1 | {
|
2 | "name": "yallist",
|
3 | "version": "5.0.0",
|
4 | "description": "Yet Another Linked List",
|
5 | "files": [
|
6 | "dist"
|
7 | ],
|
8 | "devDependencies": {
|
9 | "prettier": "^3.2.5",
|
10 | "tap": "^18.7.2",
|
11 | "tshy": "^1.13.1",
|
12 | "typedoc": "^0.25.13"
|
13 | },
|
14 | "scripts": {
|
15 | "preversion": "npm test",
|
16 | "postversion": "npm publish",
|
17 | "prepublishOnly": "git push origin --follow-tags",
|
18 | "prepare": "tshy",
|
19 | "pretest": "npm run prepare",
|
20 | "presnap": "npm run prepare",
|
21 | "test": "tap",
|
22 | "snap": "tap",
|
23 | "format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache",
|
24 | "typedoc": "typedoc"
|
25 | },
|
26 | "repository": {
|
27 | "type": "git",
|
28 | "url": "git+https://github.com/isaacs/yallist.git"
|
29 | },
|
30 | "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
31 | "license": "BlueOak-1.0.0",
|
32 | "tshy": {
|
33 | "exports": {
|
34 | "./package.json": "./package.json",
|
35 | ".": "./src/index.ts"
|
36 | }
|
37 | },
|
38 | "exports": {
|
39 | "./package.json": "./package.json",
|
40 | ".": {
|
41 | "import": {
|
42 | "types": "./dist/esm/index.d.ts",
|
43 | "default": "./dist/esm/index.js"
|
44 | },
|
45 | "require": {
|
46 | "types": "./dist/commonjs/index.d.ts",
|
47 | "default": "./dist/commonjs/index.js"
|
48 | }
|
49 | }
|
50 | },
|
51 | "main": "./dist/commonjs/index.js",
|
52 | "types": "./dist/commonjs/index.d.ts",
|
53 | "type": "module",
|
54 | "prettier": {
|
55 | "semi": false,
|
56 | "printWidth": 70,
|
57 | "tabWidth": 2,
|
58 | "useTabs": false,
|
59 | "singleQuote": true,
|
60 | "jsxSingleQuote": false,
|
61 | "bracketSameLine": true,
|
62 | "arrowParens": "avoid",
|
63 | "endOfLine": "lf"
|
64 | },
|
65 | "engines": {
|
66 | "node": ">=18"
|
67 | }
|
68 | }
|