-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.68 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
{
"name": "sdk",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --no-daemon",
"prebuild": "turbo run prebuild --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"lint": "turbo run lint --no-daemon",
"pretty": "turbo run pretty --no-daemon",
"lint:check": "turbo run lint:check --no-daemon",
"pretty:check": "turbo run pretty:check --no-daemon",
"test": "turbo run test --no-daemon",
"start:node": "turbo run start:node --no-daemon",
"start:browser": "turbo run start:browser --no-daemon",
"dev:browser": "turbo run dev:browser --no-daemon",
"pre-commit": "turbo run pre-commit --concurrency=1",
"prepare": "husky install",
"clean": "node scripts/clean.js && bash ./scripts/clean.sh",
"clean:force": "node scripts/clean.js -f && bash ./scripts/clean.sh",
"ci:publish": "pnpm publish -r --access public --no-git-checks --filter \"@cypherock/sdk-*\"",
"ci:version": "pnpm changeset version && pnpm i --no-frozen-lockfile",
"doc:serve": "mkdocs serve",
"doc:build": "mkdocs build"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@cypherock/eslint-config": "workspace:*",
"@cypherock/prettier-config": "workspace:*",
"husky": "^8.0.0",
"prettier": "^3.2.4",
"turbo": "^1.13.4"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.6.0",
"pnpm": {
"patchedDependencies": {
"@solana/web3.js@1.87.6": "patches/@solana__web3.js@1.87.6.patch"
}
}
}