generated from jasonsturges/vite-typescript-npm-package
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.65 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
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
{
"name": "supabase-comments",
"version": "0.0.2",
"description": "A React library for integrating Supabase powered comments into your applications",
"author": "Matthew Wong <matt@devtodollars.com>",
"homepage": "https://github.com/devtodollars/supabase-comments",
"repository": "github:devtodollars/supabase-comments",
"license": "MIT",
"keywords": [
"react",
"supabase",
"comments",
"component"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.umd.js"
}
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "tsc && vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"lint:scripts": "eslint ./src --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier ./src --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix"
},
"peerDependencies": {
"@supabase/auth-ui-react": "^0.4.0",
"@supabase/auth-ui-shared": "^0.1.0",
"@supabase/supabase-js": "^2.0.0",
"@tanstack/react-query": "^5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"dts-bundle-generator": "^9.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.371.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
}
}