-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
50 lines (50 loc) · 2.04 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
{
"name": "@inworld/web-sdk",
"private": true,
"workspaces": [
"packages/*"
],
"author": {
"name": "Theai, Inc.",
"url": "https://www.inworld.ai"
},
"repository": {
"type": "git",
"url": "https://github.com/inworld-ai/inworld-web-sdk.git"
},
"scripts": {
"build:core": "yarn workspace @inworld/web-core run build",
"build:threejs": "yarn workspace @inworld/web-threejs run build",
"build": "yarn workspaces foreach -A run build",
"lint:check": "yarn workspaces foreach -A run lint:check && eslint --cache \"./**/*.{js,jsx,ts,tsx}\" --ignore-path .eslintignore --config .eslintrc.json",
"lint:fix": "yarn workspaces foreach -A run lint:fix && eslint --cache \"./**/*.{js,jsx,ts,tsx}\" --ignore-path .eslintignore --config .eslintrc.json --fix",
"prettier:check": "yarn workspaces foreach -A run prettier:check && yarn prettier --check \"./examples/**/*.{js,jsx,ts,tsx}\" --ignore-path .eslintignore --config .prettierrc.json",
"prettier:format": "yarn workspaces foreach -A run prettier:format && yarn prettier --write \"./examples/**/*.{js,jsx,ts,tsx}\" --ignore-path .eslintignore --config .prettierrc.json",
"prepare": "husky",
"test": "yarn workspace @inworld/web-core run test",
"test:coverage": "yarn workspace @inworld/web-core run test:coverage"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"eslint": ">=8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"prettier": "^3.3.2",
"release-it": "^17.1.1",
"rollup": "^4.16.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.5.2"
},
"packageManager": "[email protected]"
}