forked from binaryjs/js-binarypack
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
118 lines (118 loc) · 2.65 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
{
"name": "peerjs-js-binarypack",
"version": "2.0.0",
"description": "BinaryPack serialization",
"homepage": "https://github.com/peers/js-binarypack",
"main": "dist/binarypack.cjs",
"module": "dist/binarypack.mjs",
"source": "lib/binarypack.ts",
"types": "dist/binarypack.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/binarypack.d.ts",
"default": "./dist/binarypack.mjs"
},
"require": {
"types": "./dist/binarypack.d.ts",
"default": "./dist/binarypack.cjs"
}
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"format": "biome format --write .",
"lint": "eslint --ext .js,.ts .",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/peers/js-binarypack"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"author": "Eric Zhang",
"contributors": [
{
"name": "Eric Zhang",
"email": "[email protected]"
},
{
"name": "Jonas Gloning",
"email": "[email protected]"
},
{
"name": "afrokick",
"email": "[email protected]"
},
{
"name": "manvalls",
"email": "[email protected]"
},
{
"name": "Michelle Bu",
"email": "[email protected]"
},
{
"name": "Liu Cong",
"email": "[email protected]"
},
{
"name": "Michelle Bu",
"email": "[email protected]"
},
{
"name": "lmb",
"email": "[email protected]"
},
{
"name": "orcaman",
"email": "[email protected]"
},
{
"name": "Godfrey Chan",
"email": "[email protected]"
},
{
"name": "Jarrett Cruger",
"email": "[email protected]"
},
{
"name": "Rossi Lorenzo",
"email": "[email protected]"
},
{
"name": "divec",
"email": "[email protected]"
},
{
"name": "renovate[bot]",
"email": "29139614+renovate[bot]@users.noreply.github.com"
}
],
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@jest/globals": "^29.7.0",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.34.0",
"parcel": "^2.8.3",
"semantic-release": "^23.0.0",
"typescript": "^5.0.0"
},
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
}
}