-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.35 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.35 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
{
"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.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": "eslint --fix .",
"fix:markdown": "markdownlint-cli2 --fix \"**/*.md\"",
"fix:pkg": "npm pkg fix",
"fix:prettier": "prettier --write . && markdownlint-cli2 --fix \"**/*.md\"",
"lint": "run-p -sl --aggregate-output lint:*",
"lint-staged": "lint-staged",
"lint:eslint": "eslint .",
"lint:knip": "knip",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"lint:prettier": "prettier --check .",
"lint:spelling": "cspell . \"./.*/**\"",
"lint:types": "tsc --noEmit",
"prepare": "husky; run-s -s build",
"test": "run-s 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": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@eslint/js": "9.39.2",
"@stylistic/eslint-plugin": "5.6.1",
"@types/node": "24.10.4",
"bupkis": "0.14.0",
"cspell": "9.4.0",
"eslint": "9.39.2",
"eslint-plugin-jsonc": "2.21.0",
"eslint-plugin-perfectionist": "5.2.0",
"globals": "16.5.0",
"husky": "9.1.7",
"knip": "5.78.0",
"lint-staged": "16.2.7",
"markdownlint-cli2": "0.20.0",
"markdownlint-cli2-formatter-pretty": "0.0.9",
"npm-run-all2": "8.0.4",
"prettier": "3.7.4",
"prettier-plugin-jsdoc": "1.8.0",
"prettier-plugin-pkg": "0.21.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0",
"zshy": "0.6.0"
},
"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"
}
}
}