-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 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
51
52
53
54
55
56
57
58
{
"name": "sip-protocol",
"version": "0.0.0",
"private": true,
"description": "Shielded Intents Protocol - Privacy layer for cross-chain transactions",
"repository": {
"type": "git",
"url": "https://github.com/sip-protocol/sip-protocol.git"
},
"author": "SIP Protocol",
"license": "MIT",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:integration": "vitest run --config tests/integration/vitest.config.ts",
"test:integration:watch": "vitest --config tests/integration/vitest.config.ts",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docs:generate": "typedoc",
"docs:watch": "typedoc --watch",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@ledgerhq/hw-transport-webusb": "^6.29.13",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "1.6.1",
"eslint": "^8.57.0",
"jsdom": "^27.2.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.3.0",
"vitest": "^1.1.0"
},
"packageManager": "pnpm@8.15.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
}
}