-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 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
48
49
50
51
52
53
54
55
{
"name": "@galacticcouncil/sdk",
"private": false,
"bugs": {
"url": "https://github.com/galacticcouncil/sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galacticcouncil/sdk.git"
},
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"integration-tests/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"clean": "turbo run clean",
"link": "turbo run link",
"test": "turbo run test --concurrency=1",
"changeset": "changeset",
"changeset:version": "node ./scripts/changeset-version.mjs",
"changeset:snapshot": "node ./scripts/changeset-snapshot.mjs",
"prerelease": "npm run build",
"release": "changeset publish",
"postrelease": "bash ./scripts/changeset-push.sh"
},
"devDependencies": {
"@galacticcouncil/api-augment": "^0.3.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/jest": "^28.1.8",
"es-jest": "^2.0.0",
"esbuild": "^0.20.2",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-wasm": "^1.0.0",
"fs-extra": "^10.1.0",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsx": "^3.8.2",
"turbo": "^2.0.3",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.20.2"
},
"overrides": {
"cross-spawn": "^7.0.5"
},
"packageManager": "[email protected]"
}