-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.46 KB
/
package.json
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
{
"name": "solana-wallets",
"description": "framework agnostic solana wallets package",
"version": "0.0.1",
"license": "MIT",
"author": "aidanaden",
"contributors": [],
"private": true,
"scripts": {
"postinstall": "pnpm build",
"dev": "pnpm run --parallel --filter ./packages/* dev",
"build": "turbo run build --filter=./packages/*",
"test": "turbo run test --filter=./packages/*",
"typecheck": "turbo run typecheck --filter=./packages/*",
"build-test": "turbo run build test typecheck --filter=./packages/*",
"format": "prettier --ignore-path .gitignore -w \"packages/**/*.{js,ts,json,css,tsx,jsx,md}\" \"examples/**/*.{js,ts,json,css,tsx,jsx,md}\"",
"changeset": "changeset",
"version": "changeset version && pnpm i",
"ci:version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm build && changeset publish",
"update-deps": "pnpm up -Lri"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^22.1.0",
"concurrently": "^8.2.2",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"solid-js": "^1.8.18",
"tsup": "^8.2.4",
"tsup-preset-solid": "^2.2.0",
"turbo": "^2.0.12",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-solid": "^2.5.0",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"patchedDependencies": {
"@solana-mobile/[email protected]": "patches/@[email protected]"
}
}
}