forked from skyway/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "skyway-nodejs-sdk",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"tests"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"compile": "npm run compile --workspaces --if-present",
"first": "run-s submodule:init submodule:install && npm i && npm run compile",
"format": "npm run format --workspaces --if-present",
"playground": "cd examples/playground && npm run dev",
"playground-room": "cd examples/playground-room && npm run dev",
"submodule:init": "git submodule update --init --recursive",
"submodule:install": "zx scripts/install_submodules.mjs",
"test": "cd tests && npm run test",
"type": "npm run type --workspaces --if-present",
"update-mirror": "zx scripts/update-mirror-repo.mjs",
"upgrade-interactive": "npx npm-check --update"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"esbuild": "^0.15.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"npm-run-all2": "^6.2.0",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.4.1",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "3.12.1",
"typescript": "4.7.4",
"vitest": "2.0.3",
"zx": "^7.0.8"
},
"packageManager": "[email protected]",
"engines": {
"node": "=20"
}
}