-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.83 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
{
"name": "stanza",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "12.22.1",
"author": "Lance Stout <lancestout@gmail.com>",
"bugs": "https://github.com/legastero/stanza/issues",
"contributors": [
"Philipp Hancke <fippo@andyet.net>",
"Steven Lloyd Watkin <lloyd@evilprofessor.co.uk>"
],
"dependencies": {
"@types/node": "^22.0.0",
"@types/punycode": "^2.1.0",
"@types/ws": "^8.18.1",
"punycode": "^2.1.1",
"sdp": "^3.0.2",
"ws": "^8.18.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@vitest/coverage-v8": "^4.0.16",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"webpack": "^5.104.1",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-cli": "^6.0.1"
},
"homepage": "https://stanzajs.org",
"keywords": [
"jingle",
"stanza",
"stanza.io",
"xmpp"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/legastero/stanza.git"
},
"scripts": {
"build": "tsx scripts/build",
"build:docs": "tsx scripts/build-docs",
"clean": "rm -rf dist",
"compile": "tsc -p .",
"compile:module": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
"compile:webpack": "webpack --mode production",
"license-check": "npx license-checker --production --excludePrivatePackages --summary",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate": "npm ls"
}
}