-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
61 lines (61 loc) · 2.1 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
{
"private": true,
"useWorkspaces": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"devDependencies": {
"@jessie.js/eslint-plugin": "^0.4.1",
"@octokit/core": "^3.4.0",
"@types/node": "^20.9.0",
"ava": "^6.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.4.3",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"type-coverage": "^2.29.1",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "~5.6.3",
"typescript-eslint": "^7.3.1",
"zx": "^8.1.8"
},
"scripts": {
"clean": "lerna clean",
"cover": "yarn workspaces foreach --all run cover",
"docs": "typedoc",
"docs:markdown-for-agoric-documentation-repo": "typedoc --plugin typedoc-plugin-markdown --tsconfig tsconfig.build.json",
"update": "echo 'DEPRECATED: use \"yarn upgrade-interactive\" or \"yarn dedupe\"'",
"format": "prettier --write .github packages",
"lint": "prettier --check .github packages && yarn workspaces foreach --all run lint",
"lint-fix": "yarn workspaces foreach --all run lint-fix",
"test": "yarn workspaces foreach --all --exclude @endo/skel run test",
"test:xs": "yarn workspaces foreach --all run test:xs",
"test262": "yarn workspaces foreach --all run test262",
"build": "yarn workspaces foreach --all run build",
"build-ts": "tsc --build tsconfig.build.json"
},
"dependencies": {
"conventional-changelog-conventionalcommits": "^4.6.0"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"typeCoverage": {
"atLeast": 0
},
"resolutions": {
"@babel/types": "7.24.0",
"@lerna/version@npm:5.6.2": "patch:@lerna/version@npm%3A5.6.2#~/.yarn/patches/@lerna-version-npm-5.6.2-ce2d9cb2f5.patch",
"@lerna/conventional-commits@npm:5.6.2": "patch:@lerna/conventional-commits@npm%3A5.6.2#~/.yarn/patches/@lerna-conventional-commits-npm-5.6.2-a373ba4bc0.patch"
}
}