-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
153 lines (153 loc) · 4.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "ably",
"description": "Realtime client library for Ably, the realtime messaging service",
"version": "1.2.48",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ably/ably-js/issues",
"email": "[email protected]"
},
"exports": {
".": {
"types": "./ably.d.ts",
"node": "./build/ably-node.js",
"react-native": "./build/ably-reactnative.js",
"default": "./build/ably.js"
},
"./modules": {
"types": "./modules.d.ts",
"default": "./build/modules/index.js"
}
},
"typings": "./ably.d.ts",
"files": [
"build/**",
"ably.d.ts",
"modules.d.ts",
"resources/**",
"src/**",
"react/**"
],
"dependencies": {
"@ably/msgpack-js": "^0.4.0",
"got": "^11.8.5",
"ws": "^8.14.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@ably/vcdiff-decoder": "1.0.6",
"@arethetypeswrong/cli": "^0.13.1",
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/traverse": "^7.23.7",
"@testing-library/react": "^13.3.0",
"@types/cli-table": "^0.3.4",
"@types/jmespath": "^0.15.2",
"@types/node": "^18.0.0",
"@types/request": "^2.48.7",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^1.3.2",
"async": "ably-forks/async#requirejs",
"aws-sdk": "^2.1413.0",
"babel-loader": "^8.3.0",
"chai": "^4.2.0",
"cli-table": "^0.3.11",
"cors": "^2.8.5",
"esbuild": "^0.18.10",
"esbuild-plugin-umd-wrapper": "^1.0.7",
"esbuild-runner": "^2.2.2",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.17.1",
"glob": "~4.4",
"grunt": "^1.6.1",
"grunt-bump": "^0.3.1",
"grunt-cli": "~1.2.0",
"grunt-contrib-concat": "~0.5",
"grunt-shell": "~1.1",
"grunt-webpack": "^5.0.0",
"hexy": "~0.2",
"jmespath": "^0.16.0",
"jsdom": "^20.0.0",
"kexec": "ably-forks/node-kexec#update-for-node-12",
"minimist": "^1.2.5",
"mocha": "^8.1.3",
"mocha-junit-reporter": "^2.2.1",
"path-browserify": "^1.0.1",
"playwright": "^1.39.0",
"prettier": "^2.8.8",
"process": "^0.11.10",
"react": ">=18.1.0",
"react-dom": ">=18.1.0",
"requirejs": "~2.1",
"shelljs": "~0.8",
"source-map-explorer": "^2.5.2",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"tslib": "^2.3.1",
"typedoc": "^0.24.7",
"typescript": "^4.9.5",
"vite": "^4.4.9",
"vitest": "^0.18.0",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">=5.10.x"
},
"repository": "ably/ably-js",
"jspm": {
"registry": "npm",
"directories": {
"lib": "build"
},
"main": "ably"
},
"scripts": {
"start:react": "npx vite serve",
"grunt": "grunt",
"test": "grunt test",
"test:node": "grunt test:node",
"test:node:skip-build": "grunt mocha",
"test:webserver": "grunt test:webserver",
"test:playwright": "node test/support/runPlaywrightTests.js",
"test:react": "vitest run",
"test:package": "grunt test:package",
"concat": "grunt concat",
"build": "grunt build:all && npm run build:react",
"build:node": "grunt build:node",
"build:browser": "grunt build:browser",
"build:react": "npm run build:react:mjs && npm run build:react:cjs && cp src/platform/react-hooks/res/package.react.json react/package.json",
"build:react:mjs": "tsc --project src/platform/react-hooks/tsconfig.mjs.json && cp src/platform/react-hooks/res/package.mjs.json react/mjs/package.json",
"build:react:cjs": "tsc --project src/platform/react-hooks/tsconfig.cjs.json && cp src/platform/react-hooks/res/package.cjs.json react/cjs/package.json",
"requirejs": "grunt requirejs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"format": "prettier --write --ignore-path .gitignore --ignore-path .prettierignore src test ably.d.ts modules.d.ts webpack.config.js Gruntfile.js scripts/*.[jt]s docs/chrome-mv3.md grunt",
"format:check": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore src test ably.d.ts modules.d.ts webpack.config.js Gruntfile.js scripts/*.[jt]s grunt",
"sourcemap": "source-map-explorer build/ably.min.js",
"modulereport": "tsc --noEmit --esModuleInterop scripts/moduleReport.ts && esr scripts/moduleReport.ts",
"docs": "typedoc"
}
}