-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.82 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
{
"name": "justice-typescript-sdk",
"version": "1.0.0",
"private": true,
"description": "[AGS TypeScript SDK](https://accelbyte.github.io/accelbyte-typescript-sdk/) is a platform agnostic JavaScript library enabling the building of web applications using AGS API",
"scripts": {
"build:error-translator": "yarn workspace @accelbyte/error-translator build",
"build:sdk": "yarn build:sdk-core && node ./scripts/generate/sdk-generate.mjs sdk-build-all",
"build:sdk-core": "yarn workspace @accelbyte/validator build && yarn workspace @accelbyte/sdk build",
"clean": "rimraf ./node_modules && yarn workspaces run clean",
"codegen:sdk": "node ./scripts/generate/sdk-generate.mjs sdk-codegen-all",
"format:all": "prettier --write .",
"lint": "eslint . --fix --quiet",
"prepare": "husky install",
"changeset:version": "changeset version && yarn install --mode=update-lockfile",
"changeset:tag": "changeset tag",
"sync-examples-versions": "node ./scripts/examples/sync-versions.js"
},
"keywords": [],
"author": "",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "2.27.7",
"@types/eslint": "8.4.10",
"@types/node": "22.3.0",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "7.0.0",
"eslint": "8.56.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-monorepo-cop": "1.0.2",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unused-imports": "3.0.0",
"execa": "7.1.1",
"husky": "8.0.1",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "3.1.1",
"rimraf": "4.1.2",
"semver": "7.6.3",
"tsup": "8.3.5",
"typescript": "5.5.4"
}
}