-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.41 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.41 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
98
{
"name": "@vcui/popser",
"version": "1.2.0",
"type": "module",
"description": "Toast notifications for React. Built on Base UI. Sonner-compatible API.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./styles": "./dist/styles/popser.css",
"./styles/min": "./dist/styles/popser.min.css",
"./tokens": "./dist/styles/tokens.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"dev:preview": "vite --config dev/vite.config.ts",
"lint": "npx ultracite check",
"lint:fix": "npx ultracite fix",
"prepublishOnly": "npm run type-check && npm run test && npm run build",
"web:dev": "npm run --prefix web dev",
"web:build": "npm run --prefix web build"
},
"keywords": [
"toast",
"notifications",
"react",
"base-ui",
"sonner",
"headless",
"accessible",
"a11y",
"typescript"
],
"author": "Vibe Code <hello@vcode.sh> (https://vcode.sh)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vcode-sh/popser.git"
},
"bugs": {
"url": "https://github.com/vcode-sh/popser/issues"
},
"homepage": "https://popser.vcui.dev",
"peerDependencies": {
"@base-ui/react": "^1.2.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@base-ui/react": "^1.2.0",
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "^4.0.18",
"happy-dom": "20.7.0",
"lint-staged": "16.2.7",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "8.5.1",
"typescript": "5.9.3",
"ultracite": "7.2.3",
"vite": "^7.3.1",
"vitest": "4.0.18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": [
"npx ultracite fix"
]
}
}