-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.14 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.14 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
{
"name": "@appgram/react",
"version": "0.2.0",
"description": "React library for integrating Appgram portal features with pre-built UI components and headless hooks",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.mjs",
"require": "./dist/hooks/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.mjs",
"require": "./dist/components/index.js"
},
"./tailwind-preset": "./tailwind-preset.js"
},
"files": [
"dist",
"tailwind-preset.js"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"clean": "rm -rf dist",
"demo": "npm run build && cd demo && npm install && npm run dev",
"demo:install": "cd demo && npm install",
"demo:dev": "cd demo && npm run dev",
"docs:json": "npx typedoc --json docs.json --entryPoints src/index.ts",
"docs:transform": "node transform-docs.js",
"docs:build": "npm run docs:json && npm run docs:transform"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"clsx": "^2.1.0",
"dompurify": "^3.3.1",
"framer-motion": "^11.0.0",
"lucide-react": "^0.400.0",
"react-markdown": "^9.0.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.0",
"typedoc": "^0.26.11",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AppGram/react"
},
"keywords": [
"react",
"appgram",
"feedback",
"roadmap",
"feature-requests",
"changelog",
"support"
],
"author": "Appgram",
"license": "MIT"
}