-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "mux-web-streams",
"version": "1.2.0",
"description": "Multiplex and demultiplex web streams.",
"author": "Ben Brook",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "del dist && tsc",
"test": "tsx --test test/**.test.ts",
"test-only": "node --loader tsx --test-only test/mux-web-streams.test.ts",
"lint:prettier": "prettier . --check",
"prepublishOnly": "npm run build && npm run test && npm run lint:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencmbrook/mux-web-streams.git"
},
"keywords": [
"mux",
"demux",
"multiplex",
"demultiplex",
"whatwg",
"web",
"streams"
],
"bugs": {
"url": "https://github.com/bencmbrook/mux-web-streams/issues"
},
"homepage": "https://github.com/bencmbrook/mux-web-streams#readme",
"devDependencies": {
"@eslint/js": "^8.52.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^18.18.6",
"del-cli": "^5.1.0",
"prettier": "^3.0.3",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
}
}