forked from au-re/rimless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "@jam.dev/rimless",
"author": "Aurélien Franky",
"version": "0.6.3",
"license": "MIT",
"homepage": "https://github.com/jamdotdev/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",
"format": "npx prettier --check \"./src/**/*.{js,jsx,ts,tsx,css,scss,html,md}\" --write",
"build": "tsc -b && vite build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ignore-pattern='lib/*' --ignore-pattern='lib/**' --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": "git+https://github.com/jamdotdev/rimless.git"
},
"publishConfig": {
"access": "public"
},
"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",
"prettier": "^3.5.3",
"storybook": "^8.2.9",
"terser": "^5.34.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.8.1",
"vite": "^6.3.3",
"vite-plugin-dts": "^4.2.4",
"vitest": "^2.0.5"
},
"volta": {
"node": "18.19.0"
}
}