-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "rimless",
"author": "Aurélien Franky",
"version": "0.4.0",
"license": "MIT",
"homepage": "https://github.com/au-re/rimless",
"description": "event base communication made easy with a promise-based API wrapping `postMessage`",
"type": "module",
"main": "lib/rimless.js",
"module": "lib/rimless.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ignore-pattern '**/*.min.js'",
"test": "vitest run",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"visualize-bundle": "npx vite-bundle-visualizer"
},
"repository": {
"type": "git",
"url": "https://github.com/au-re/rimless.git"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.7.0",
"@eslint/js": "^9.9.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@types/lodash.set": "^4.3.9",
"@types/node": "^22.7.5",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"happy-dom": "^15.7.4",
"storybook": "^8.2.9",
"terser": "^5.34.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.2.4",
"vitest": "^2.0.5"
},
"volta": {
"node": "18.19.0"
}
}