-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.75 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
{
"name": "root",
"homepage": "https://azero.id",
"repository": {
"type": "git",
"url": "git+https://github.com/azero-id/resolver.git"
},
"bugs": {
"url": "https://github.com/azero-id/resolver/issues"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.6.0",
"workspaces": ["packages/*", "examples/*"],
"scripts": {
"dev": "pnpm -r -F \"{packages/**}\" dev",
"dev:examples": "pnpm run build && pnpm -r -F \"{examples/**}\" dev",
"build": "pnpm -F \"{packages/resolver-core}\" build && pnpm -F \"{packages/resolver-react}\" build",
"test": "pnpm -F \"{packages/resolver-core}\" test",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "pnpm build && changeset publish",
"lint": "biome check . --files-ignore-unknown=true && prettier . --check",
"lint:fix": "biome check . --write --files-ignore-unknown=true && prettier . --write",
"typecheck": "tsc --pretty --noEmit",
"typesync": "typesync && pnpm install",
"typedoc": "typedoc --options typedoc.json"
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"nano-staged": {
"*.{js,ts,cjs,mjs,jsx,tsx,json,jsonc}": "biome check --write",
"*.{md,mdx,html,css,sass,scss,yml,yaml}": "prettier . --write"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.11",
"nano-staged": "^0.8.0",
"npm-check-updates": "^16.14.20",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.2",
"typedoc": "^0.26.5",
"typescript": "~5.5.4",
"typesync": "^0.13.0"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7"
},
"trustedDependencies": ["@biomejs/biome"]
}