-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.31 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
91
92
{
"name": "@leon-ai/aurora",
"version": "0.0.0-development",
"description": "The UI bricks that power up Leon.",
"public": true,
"type": "module",
"author": {
"name": "Louis Grenard",
"email": "[email protected]",
"url": "https://twitter.com/grenlouis"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leon-ai/aurora.git"
},
"bugs": {
"url": "https://github.com/leon-ai/aurora/issues"
},
"homepage": "https://aurora.getleon.ai/components",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"!/**/App.d.ts",
"!/**/*.svg",
"!/**/*.jpg",
"!/**/*.jpeg",
"!/**/*.png",
"!/**/*.webp"
],
"module": "./dist/aurora.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/aurora.js",
"types": "./dist/src/index.d.ts"
},
"./style.css": {
"import": "./dist/style.css",
"types": "./dist/src/style.css.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
"preview": "vite preview",
"release": "semantic-release"
},
"peerDependencies": {
"@fontsource/source-sans-pro": "^5.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remixicon": "^3.4.0"
},
"dependencies": {
"@ark-ui/react": "0.5.0",
"clsx": "2.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@types/node": "20.9.4",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"@vitejs/plugin-react-swc": "3.5.0",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.4",
"prettier": "3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remixicon": "3.5.0",
"sass": "1.69.5",
"semantic-release": "22.0.8",
"typescript": "5.2.2",
"vite": "5.0.2",
"vite-plugin-dts": "3.6.3"
}
}