-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.18 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.18 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
{
"name": "xmppjs",
"private": true,
"version": "0.0.0",
"type": "module",
"files": [
"dist/",
"index.d.ts",
"index.js"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./lib/*": {
"import": "./dist/lib/*",
"types": "./dist/lib/*"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"bulid-no-tsc": "vite build",
"ts-check": "tsc --noEmit",
"ts-build": "tsc && tsc-alias",
"tsc-alias": "tsc-alias",
"test": "vitest"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"tsc-alias": "^1.8.10",
"typescript": "~5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.1.3"
},
"dependencies": {
"hsluv": "^1.0.1",
"loglevel": "^1.9.2",
"uuid": "^11.0.3"
},
"optionalDependencies": {
"@xmldom/xmldom": "^0.9.6",
"events": "^3.3.0",
"image-size": "^1.2.0",
"ws": "^8.18.0"
},
"engines": {
"node": ">=20"
}
}