-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.72 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
{
"name": "caatinga",
"version": "3.3.0",
"private": true,
"engines": {
"node": ">=22"
},
"type": "module",
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo build",
"dev": "pnpm --filter @caatinga/cli dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"install:global": "pnpm build && NPM_CONFIG_PREFIX=\"$(dirname \"$(dirname \"$(command -v node)\")\")\" npm install -g ./packages/cli",
"test": "turbo test",
"test:compat": "pnpm --filter @caatinga/core test -- src/compat src/public-api src/recovery",
"docs:check": "node scripts/docs-check.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"typecheck": "turbo typecheck",
"knip": "knip --no-config-hints",
"check:versions": "bash scripts/check-version-alignment.sh",
"check:fixtures": "bash scripts/check-fixture-references.sh",
"check:wasm-targets": "bash scripts/check-wasm-target-paths.sh",
"changeset": "changeset",
"pack:packages": "( cd packages/core && pnpm pack --pack-destination ../../packed ) && ( cd packages/zk && pnpm pack --pack-destination ../../packed ) && ( cd packages/client && pnpm pack --pack-destination ../../packed ) && ( cd packages/cli && pnpm pack --pack-destination ../../packed )",
"test:consumer": "bash scripts/consumer-isolation-test.sh",
"test:consumer:client-bundlers": "bash scripts/consumer-client-bundlers-test.sh",
"ci:snapshot-pack": "bash scripts/ci-snapshot-pack.sh",
"pre:publish": "bash scripts/pre-publish.sh",
"pre:publish:keep-going": "bash scripts/pre-publish.sh --keep-going",
"publish:dry-run": "pnpm publish -r --access public --dry-run --no-git-checks --tag latest",
"ci:publish-matrix": "bash scripts/check-version-alignment.sh && bash scripts/check-ci-stellar-pin.sh && bash scripts/check-fixture-references.sh && pnpm build && pnpm check:wasm-targets && pnpm test && pnpm test:compat && pnpm ci:snapshot-pack && pnpm publish:dry-run && SKIP_PACK=1 PACKED_DIR=\"$PWD/packed\" pnpm test:consumer && PACKED_DIR=\"$PWD/packed\" pnpm test:consumer:client-bundlers"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.0.0",
"@types/node": "^22.10.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"knip": "5",
"mermaid": "^11.15.0",
"prettier": "^3.0.0",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.0.0",
"vitepress": "^1.6.3",
"vitepress-plugin-mermaid": "^2.0.17",
"yaml": "^2.7.0"
},
"dependencies": {
"@caatinga/client": "^3.1.1",
"@caatinga/core": "^3.1.1"
}
}