-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "remote-web-streams",
"version": "0.2.0",
"description": "Web streams that work across web workers and iframes.",
"type": "module",
"main": "dist/remote-web-streams.js",
"types": "dist/remote-web-streams.d.ts",
"keywords": [
"remote",
"web",
"streams",
"readablestream",
"whatwg",
"worker"
],
"repository": {
"type": "git",
"url": "https://github.com/MattiasBuelens/remote-web-streams.git"
},
"author": "Mattias Buelens",
"license": "MIT",
"engines": {
"node": ">= 18"
},
"files": [
"dist/"
],
"scripts": {
"build": "npm run check:types && npm run build:bundle",
"build:bundle": "rollup -c",
"check:types": "tsc --project ./tsconfig.json --noEmit",
"prepare": "npm run build && npm test",
"start": "rollup -c -w",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@rollup/plugin-typescript": "^11.1.1",
"jest": "^29.5.0",
"rollup": "^3.25.3",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"tslib": "^2.6.0",
"typescript": "^5.1.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "test/tsconfig.json"
}
]
}
}
}