-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "@availity/app-tiles",
"version": "0.2.5",
"description": "Availity UI Kit application tiled icon react component.",
"keywords": [
"react",
"availity",
"app-tiles"
],
"homepage": "https://availity.github.io/availity-react/components/app-tiles",
"bugs": {
"url": "https://github.com/Availity/availity-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/availity-react.git",
"directory": "packages/app-tiles"
},
"license": "MIT",
"author": "Evan Sharp <evan.sharp@availity.com>",
"browser": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"clean": "rm -rf dist",
"clean:nm": "rm -rf node_modules",
"publish": "yarn npm publish --tolerate-republish --access public",
"publish:canary": "yarn npm publish --access public --tag canary"
},
"dependencies": {
"classnames": "^2.5.1"
},
"devDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.0.0"
},
"publishConfig": {
"access": "public"
}
}