-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.59 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.59 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
{
"name": "vana-sdk-monorepo",
"private": true,
"type": "module",
"version": "1.0.9",
"description": "Vana SDK monorepo with examples",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:sdk": "turbo run build --filter='@opendatalabs/vana-sdk'",
"build:console": "turbo run build --filter='vana-console'",
"build:vibes": "turbo run build --filter='vana-vibes-demo'",
"build:rbac": "turbo run build --filter='vana-rbac-auditor'",
"dev": "turbo run dev",
"dev:console": "turbo run dev --filter='vana-console'",
"dev:vibes": "turbo run dev --filter='vana-vibes-demo'",
"dev:rbac": "turbo run dev --filter='vana-rbac-auditor'",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:ci": "turbo run lint --output-logs=new-only | tee lint-output.txt && echo '\\n=== Lint Summary ===' && grep -c warning lint-output.txt 2>/dev/null | xargs -I {} echo 'Warnings: {}' && grep -c error lint-output.txt 2>/dev/null | xargs -I {} echo 'Errors: {}' || true",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"fetch-abis": "turbo run fetch-abis --filter='@opendatalabs/vana-sdk'",
"fetch-server-types": "turbo run fetch-server-types --filter='@opendatalabs/vana-sdk'",
"clean": "turbo run clean",
"docs": "typedoc",
"prepare": "husky",
"validate": "turbo run lint typecheck test:coverage"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint-plugin-jsdoc": "^50.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"semantic-release": "^24.2.0",
"turbo": "^2.6.1",
"typedoc": "^0.28.10",
"typedoc-plugin-monorepo": "^0.1.0"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/vana-com/vana-sdk.git"
},
"dependencies": {
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2"
}
}