-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
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
{
"name": "sound-sdk",
"private": true,
"homepage": "https://github.com/soundxyz/sdk#readme",
"bugs": {
"url": "https://github.com/soundxyz/sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/soundxyz/sdk"
},
"license": "MIT",
"contributors": [
"Saihajpreet Singh <[email protected]> (https://saihaj.dev/)"
],
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"format": "prettier . --write",
"postinstall": "husky install",
"prettier:write": "prettier \"**/*.{ts,tsx,mjs,cjs,js}\" --write",
"pretty-quick": "pretty-quick --staged",
"release": "pnpm -r --access=public publish --no-git-checks",
"release:canary": "(node scripts/canary-release.js && pnpm -r publish --access public --no-git-checks --tag alpha) || echo Skipping Canary...",
"test": "pnpm -r --filter=sdk test",
"tsc": "tsc -p tsconfig.json",
"typecheck": "pnpm tsc"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@changesets/apply-release-plan": "^6.1.4",
"@changesets/assemble-release-plan": "^5.2.4",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@changesets/config": "^2.3.1",
"@changesets/read": "^0.5.9",
"@manypkg/get-packages": "^2.2.0",
"@types/node": "20.8.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"changesets-github-release": "^0.1.0",
"dotenv-vault": "^1.25.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"typescript": "5.2.2",
"vitest": "^0.34.6"
},
"engines": {
"pnpm": ">=8.8.0"
},
"pnpm": {
"overrides": {
"@graphql-codegen/visitor-plugin-common": "3.0.2",
"@manypkg/get-packages": "^1.1.3"
},
"patchedDependencies": {
"@graphql-codegen/[email protected]": "patches/@[email protected]"
},
"peerDependencyRules": {
"allowedVersions": {
"@graphql-tools/utils": "*"
}
}
}
}