-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 loc) · 1.96 KB
/
package.json
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
{
"name": "farcaster-js-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"type:check": "tsc --noEmit",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"spell:check": "cspell .",
"cz": "cz",
"generate": "yarn run generate:docs",
"generate:docs": "md-magic --path './README.md'",
"semantic-release": "semantic-release",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^17.6.5",
"@commitlint/config-lerna-scopes": "^18.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^6.9.1",
"commitizen": "^4.3.0",
"cspell": "^7.3.8",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"esm": "^3.2.25",
"fix-esm-import-path": "^1.4.0",
"husky": "^8.0.3",
"lerna": "^7.4.2",
"markdown-magic": "^2.6.1",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"source-map-support": "^0.5.19",
"tshy": "1.5.0",
"typescript": "^5.2.2"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}