forked from Shepard2154/asyncapi-try-it-plugin
-
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.85 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.85 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": "asyncapi-try-it-plugin",
"version": "0.1.0-beta.0",
"description": "Try it out plugin for @asyncapi/react-component",
"repository": {
"type": "git",
"url": "https://github.com/Shepard2154/asyncapi-try-it-plugin.git"
},
"bugs": {
"url": "https://github.com/Shepard2154/asyncapi-try-it-plugin/issues"
},
"homepage": "https://github.com/Shepard2154/asyncapi-try-it-plugin#readme",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean && npm run build:iife",
"build:iife": "rollup -c rollup.config.mjs",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,html,css,yaml,yml}\"",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@asyncapi/react-component": "^2.6.0",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@asyncapi/react-component": "^2.6.0",
"@rollup/plugin-commonjs": "^28.0.8",
"@rollup/plugin-node-resolve": "^16.0.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.12",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"rollup": "^4.52.4",
"rollup-plugin-esbuild": "^6.2.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
},
"dependencies": {
"asyncapi-try-it-plugin": "^0.1.0-beta.0"
}
}