-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.49 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
60
61
62
63
64
{
"name": "@knowledgecode/messenger",
"version": "0.6.0",
"description": "Type-safe Request/Reply and Pub/Sub messaging library for browser applications",
"keywords": [
"request-reply",
"pub-sub",
"pubsub",
"messaging",
"communication",
"typescript",
"type-safe",
"iframe",
"worker",
"browser",
"message-channel",
"components"
],
"homepage": "https://github.com/knowledgecode/messenger#readme",
"bugs": {
"url": "https://github.com/knowledgecode/messenger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowledgecode/messenger.git"
},
"license": "MIT",
"author": "KNOWLEDGECODE",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"LICENSE",
"README.md",
"dist/**/*"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"lint": "eslint",
"test": "vitest run"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.6.1",
"@vitest/browser-playwright": "^4.0.16",
"eslint": "^9.39.2",
"playwright": "^1.57.0",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-license": "^3.6.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16"
}
}