-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.9 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
{
"name": "@jitsi/js-utils",
"version": "12.0.2",
"description": "Utilities for Jitsi JS projects",
"repository": {
"type": "git",
"url": "git://github.com/jitsi/js-utils"
},
"keywords": [
"browser",
"jitsi",
"utils"
],
"author": "",
"readmeFilename": "README.md",
"dependencies": {
"@hapi/bourne": "3.0.0",
"js-md5": "0.7.3",
"ua-parser-js": "1.0.35"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4",
"@jitsi/eslint-config": "6.0.4",
"@rollup/plugin-commonjs": "^29.0.0",
"@types/chai": "5.2.3",
"@types/js-md5": "0.8.0",
"@types/node": "24.9.2",
"@types/ua-parser-js": "0.7.39",
"@typescript-eslint/eslint-plugin": "8.65.0",
"@typescript-eslint/parser": "8.65.0",
"@web/dev-server-esbuild": "1.0.4",
"@web/dev-server-rollup": "0.6.4",
"@web/test-runner": "0.20.2",
"eslint": "8.57.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"events": "3.3.0",
"mocha": "11.7.6",
"typescript": "5.9.3"
},
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc --project tsconfig.json",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch",
"test:coverage": "web-test-runner --coverage",
"test:debug": "web-test-runner --manual --open"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./json": {
"types": "./dist/json.d.ts",
"default": "./dist/json.js"
},
"./polyfills/*": {
"types": "./dist/polyfills/*.d.ts",
"default": "./dist/polyfills/*.js"
},
"./*": {
"types": "./dist/*/index.d.ts",
"default": "./dist/*/index.js"
}
},
"files": [
"dist"
],
"license": "Apache-2.0"
}