-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "@ens-tools/monorepo",
"private": true,
"version": "1.0.0",
"description": "Opinionated ENS General Tooling",
"main": "index.js",
"scripts": {
"sync:deps": "syncpack",
"release": "pnpm -r build && changeset publish",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test -- --coverage",
"typecheck": "pnpm -r typecheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"eslint": "^8.49.0",
"eslint-plugin-v3xlabs": "^1.6.1",
"syncpack": "^11.2.1"
},
"syncpack": {
"$schema": "https://unpkg.com/[email protected]/dist/schema.json",
"versionGroups": [
{
"label": "Workspace packages are pinned to `workspace:*`",
"packages": [
"**"
],
"dependencies": [
"@ens-tools/*",
"eslint-config-enstools"
],
"dependencyTypes": [
"dev",
"prod"
],
"pinVersion": "workspace:*"
}
]
}
}