This repository was archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.52 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.52 KB
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
76
77
78
79
{
"name": "@speechly/react-ui",
"private": true,
"version": "2.1.2",
"description": "Speechly UI Components",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"getdeps": "npm install && rm -rf 'node_modules/@types/react-native' && rm -rf 'node_modules/.pnpm/@types/react-native@0.63.34/'",
"build": "npm run lint && rm -rf ./lib/ && npx tsc",
"lint": "npx eslint --cache --max-warnings 0 'src/**/*.{ts,tsx}'",
"test": "echo 'Pending...'",
"docs": "npm run prepdist && npx typedoc --readme none --excludeExternals --excludePrivate --excludeProtected --out ./docs/ --plugin typedoc-plugin-markdown --entryPointStrategy expand ./src/",
"prepdist": "node ./prepare_dist.js",
"precommit": "npx prettier --write src/**/*.ts && npm run build && npm run docs",
"prerelease": "npm run build && npm run prepdist",
"watch": "rm -rf ./lib/ && mkdir lib && npm run prepdist && npx tsc-watch"
},
"keywords": [
"speechly",
"ui",
"push-to-talk"
],
"author": "Speechly",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/speechly/react-ui.git"
},
"bugs": {
"url": "https://github.com/speechly/react-ui/issues"
},
"devDependencies": {
"@speechly/react-client": "^0.0.20",
"@types/pubsub-js": "^1.8.1",
"@types/react": ">=16.13.1",
"@types/react-dom": ">=16.13.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"css-loader": "^5.0.1",
"eslint": "^7.21.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-tsdoc": "^0.2.7",
"prettier": "^2.1.2",
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"ts-loader": "^8.0.11",
"tsc-watch": "^4.2.9",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.11.2",
"typescript": "^4.2.4",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"peerDependencies": {
"@speechly/react-client": ">=0.0.20",
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"dependencies": {
"@speechly/browser-ui": ">=4.0.2",
"pubsub-js": "^1.9.2",
"react-spring": "^8.0.27",
"styled-components": "^5.2.1"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
}
}