-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "@llmtxt/monorepo",
"private": true,
"description": "Monorepo for @llmtxt (llms.txt, llms-full.txt, and Markdown for agents).",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm -ws run build",
"clean": "npm -ws run clean",
"lint": "eslint ./packages/ --fix",
"prepare": "husky install",
"test": "jest --coverage",
"test:watch": "jest --watch",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^27.5.2",
"@types/node": "^18.19.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.2.0",
"lint-staged": "^13.2.1",
"prettier": "^2.2.1",
"semantic-release": "^21.0.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"packages/**/*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}