-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 854 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 854 Bytes
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
{
"name": "@zkorum/agora-shared",
"version": "1.0.0",
"type": "module",
"description": "Universal shared code for all Agora services",
"main": "index.js",
"scripts": {
"sync": "bash scripts/rsync_and_sed.sh",
"format:write": "prettier --write \"**/*.{js,ts,jsx,tsx,vue,scss,html,md,json}\"",
"format:check": "prettier . --check"
},
"keywords": [
"shared",
"universal"
],
"author": "ZKorum SAS <hello@zkorum.com>",
"license": "MPL-2.0",
"dependencies": {
"libphonenumber-js": "^1.12.38",
"sanitize-html": "^2.17.1",
"uint8arrays": "^5.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/sanitize-html": "^2.16.0",
"prettier": "^3.8.1",
"typescript": "^5.2.2"
}
}