-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.58 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "floaty-widget",
"version": "0.1.0",
"description": "A floating component with drag, collapse/expand, and pin functionality",
"type": "module",
"packageManager": "npm@11.12.1",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./dist/floaty-widget.css": "./dist/floaty-widget.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "biome check --write .",
"format:check": "biome check .",
"check": "npm run lint && npm run format:check",
"release": "semantic-release"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@api-hooks/gh": "^2.2.0",
"@biomejs/biome": "^2.4.16",
"@gnome-ui/core": "^1.42.3",
"@gnome-ui/icons": "^1.42.0",
"@gnome-ui/react": "^1.45.0",
"@storybook/addon-docs": "^10.3.4",
"@storybook/react": "^10.3.4",
"@storybook/react-vite": "^10.3.4",
"@tanstack/react-query": "^5.100.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.7",
"jsdom": "^29.1.1",
"storybook": "^10.3.4",
"super-configs": "^1.7.0",
"typescript": "^5.3.0",
"vite": "8.0.7",
"vite-plugin-dts": "^5.0.1",
"vitest": "^4.1.7"
},
"author": "pilmee <pilmee@gmail.com> (https://github.com/ElJijuna)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false
}
]
]
}
}