-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "packagename",
"version": "0.0.0",
"type": "module",
"description": "Shankle short loin porchetta strip steak tongue drumstick shoulder shank turkey pork loin picanha flank.",
"repository": {
"type": "git",
"url": "git+https://github.com/boneskull/packagename.git"
},
"author": "Christopher Hiller <boneskull@boneskull.com> (https://boneskull.com/)",
"license": "BlueOak-1.0.0",
"private": true,
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"CHANGELOG.md",
"dist",
"src"
],
"keywords": [],
"scripts": {
"build": "zshy",
"commitlint": "commitlint",
"fix": "run-s -sl fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:markdown": "npm run lint:markdown -- --fix",
"fix:pkg": "npm pkg fix",
"fix:prettier": "prettier --write .",
"lint": "run-p -sl --aggregate-output lint:*",
"lint-staged": "lint-staged",
"lint:engines": "installed-check --engine-check",
"lint:eslint": "eslint .",
"lint:knip": "knip",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"lint:prettier": "prettier --check .",
"lint:spelling": "cspell . \"./.*/**\"",
"lint:types": "tsc --noEmit",
"prepare": "husky; npm run build",
"test": "npm run test:runtime",
"test:runtime": "node --import tsx --test --test-reporter=spec \"test/**/*.test.ts\"",
"test:watch": "node --import tsx --test --test-reporter=spec --watch \"test/**/*.test.ts\""
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "24.13.3",
"bupkis": "1.0.0",
"cspell": "10.0.1",
"eslint": "10.8.0",
"eslint-plugin-jsonc": "3.3.0",
"eslint-plugin-perfectionist": "5.10.0",
"globals": "17.8.0",
"husky": "9.1.7",
"installed-check": "10.0.1",
"knip": "6.31.0",
"lint-staged": "17.3.0",
"markdownlint-cli2": "0.23.2",
"markdownlint-cli2-formatter-pretty": "0.0.10",
"npm-run-all2": "9.0.3",
"prettier": "3.9.6",
"prettier-plugin-jsdoc": "1.8.1",
"prettier-plugin-pkg": "0.22.1",
"tsx": "4.23.1",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"zshy": "0.7.3"
},
"allowScripts": {
"esbuild@0.27.2": true,
"fsevents@2.3.3": true
},
"knip": {
"ignoreDependencies": [
"markdownlint-cli2-formatter-pretty"
],
"ignore": [
"**/*.d.ts",
".worktrees/**/*"
],
"tags": [
"-knipignore"
]
},
"lint-staged": {
"*.{ts,js,yml,json5}": [
"eslint --fix",
"prettier --write",
"cspell lint --no-must-find-files"
],
"**/!(package-lock).json": [
"eslint --fix",
"prettier --write",
"cspell lint --no-must-find-files"
],
"*.md": [
"markdownlint-cli2 --fix",
"prettier --write",
"cspell lint --no-must-find-files"
]
},
"prettier": {
"jsdocCommentLineStrategy": "keep",
"jsdocPreferCodeFences": true,
"plugins": [
"prettier-plugin-jsdoc",
"prettier-plugin-pkg"
],
"singleQuote": true,
"tsdoc": true
},
"zshy": {
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
}
}
}