-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.36 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.36 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
{
"name": "lavamoat-monorepo",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lavamoat/lavamoat.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "^20.19.0 || ^22.5.1 || ^24.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "npm run --workspaces --if-present build && npm run build:types",
"build:types": "tsc -b",
"clean:types": "git clean -fx -e \"**/node_modules/**\" \"packages/*/types/*.d.ts*\" \"*.tsbuildinfo\"; tsc -b --clean",
"lint": "npm run lint:eslint && npm run lint:deps && npm run lint:lockfile",
"lint:commit": "commitlint",
"lint:deps": "npm run --workspaces --if-present lint:deps",
"lint:eslint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:lockfile": "node scripts/lint-lockfile.js",
"lint:staged": "lint-staged --config ./.config/lint-staged.config.js",
"rebuild": "npm run --workspaces --if-present rebuild && npm run rebuild:types",
"rebuild:types": "npm run clean:types && npm run build:types",
"release": "npm run release:rebuild && npm run release:publish --newPkg=${npm_config_newpkg}",
"release:dry-run": "laverna --dryRun --newPkg=${npm_config_newpkg}",
"release:publish": "laverna --newPkg=${npm_config_newpkg}",
"release:rebuild": "npm run rebuild && npm run test:prep && npm run test:workspaces",
"setup": "husky; npm run rebuild",
"test": "npm run build && npm run test:prep && npm run test:workspaces",
"test:prep": "npm run --workspaces --if-present test:prep",
"test:workspaces": "npm run --workspaces --if-present test",
"watch:types": "tsc -b --watch"
},
"devDependencies": {
"@babel/types": "7.27.3",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@endo/compartment-mapper": "2.0.0",
"@eslint/js": "10.0.1",
"@tsconfig/node20": "20.1.0",
"@types/lint-staged": "13.3.0",
"@types/node": "20.19.34",
"@types/semver": "7.7.1",
"@types/wallabyjs": "0.0.15",
"@types/yargs": "17.0.35",
"ava": "6.2.0",
"c8": "10.1.3",
"cross-env": "7.0.3",
"depcheck": "1.4.7",
"eslint": "10.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-ava": "16.0.0",
"eslint-plugin-jsonc": "2.21.1",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-node-import": "1.2.0",
"expect-type": "1.2.2",
"glob": "11.1.0",
"globals": "17.3.0",
"husky": "9.1.7",
"lint-staged": "16.1.6",
"memfs": "4.17.2",
"prettier": "3.6.2",
"prettier-plugin-jsdoc": "1.3.3",
"prettier-plugin-pkg": "0.21.2",
"semver": "7.7.4",
"ses": "1.15.0",
"type-fest": "4.41.0",
"typescript": "5.9.2",
"typescript-eslint": "8.56.0"
},
"overrides": {
"@babel/types": "$@babel/types",
"@endo/compartment-mapper": "$@endo/compartment-mapper",
"@types/node": "$@types/node",
"cross-spawn": "7.0.6",
"ses": "$ses",
"type-fest": "$type-fest",
"util": "0.12.5"
},
"ava": {
"files": [
"packages/*/test/*.spec.js"
],
"timeout": "2m"
},
"prettier": {
"jsdocCommentLineStrategy": "keep",
"jsdocPreferCodeFences": true,
"jsdocTagsOrder": "{\"template\": 24.5}",
"plugins": [
"prettier-plugin-jsdoc",
"prettier-plugin-pkg"
],
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"tsdoc": true
}
}