-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.34 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
{
"name": "@hypercerts-org/sdk",
"private": true,
"description": "SDK packages for hypercerts protocol",
"repository": "git@github.com:hypercerts-org/hypercerts-sdk.git",
"author": "Hypercerts Foundation",
"license": "MIT",
"packageManager": "pnpm@9.2.0+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo typecheck",
"check": "pnpm run lint && pnpm run typecheck && pnpm run build && pnpm run test",
"clean": "turbo clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm check && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.25.1",
"@vitest/coverage-v8": "^4.0.6",
"@vitest/ui": "^4.0.6",
"eslint": "^9.25.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"turbo": "^2.7.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.47.0",
"vitest": "^4.0.6"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,ts,tsx,jsx,mjs,cjs}": "eslint --fix --max-warnings 0"
}
}