-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.98 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.98 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
{
"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@10.4.1",
"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",
"update": "pnpm taze minor --interactive --recursive --write --install --exclude \"x\""
},
"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.9.4",
"@types/node": "^22.13.5",
"nano-staged": "^0.8.0",
"prettier": "^3.5.2",
"simple-git-hooks": "^2.11.1",
"taze": "^18.6.0",
"tsup": "^8.3.6",
"typedoc": "^0.27.8",
"typescript": "~5.7.3",
"typesync": "^0.14.1"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1"
},
"trustedDependencies": ["@biomejs/biome"],
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"bufferutil",
"esbuild",
"simple-git-hooks",
"utf-8-validate"
]
}
}