-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "anni",
"version": "1.1.30",
"description": "Simple, beautiful, and easy-to-use notification system",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "./src/index.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"dev": "bunchee --watch",
"build": "tsc && esbuild dist/**/*.js --minify --outdir=dist --allow-overwrite && esbuild src/styles.css --minify --outfile=dist/styles.css",
"start": "pnpm --filter=website start",
"dev:website": "turbo run dev --filter=website"
},
"files": [
"dist",
"dist/index.d.ts",
"dist/index.js"
],
"keywords": [
"notifications",
"react",
"ui",
"component",
"css",
"toast",
"nextjs"
],
"author": "David Bendezú <hi@daustinn.com>",
"license": "MIT",
"homepage": "https://anni.daustinn.com",
"repository": {
"type": "git",
"url": "git+https://github.com/daustinn/anni.git"
},
"bugs": {
"url": "https://github.com/daustinn/anni/issues"
},
"type": "module",
"dependencies": {
"@radix-ui/react-toast": "^1.2.4"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@swc/core": "^1.11.12",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"bunchee": "^6.5.0",
"esbuild": "^0.25.1",
"eslint": "^9.23.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^16.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"tsup": "^8.4.0",
"turbo": "^2.4.4",
"typescript": "^4.3.5",
"typescript-eslint": "^8.27.0"
},
"packageManager": "pnpm@10.6.5",
"workspaces": [
"website",
"."
]
}