-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.78 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.78 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@radui/fx",
"version": "0.2.0",
"description": "A UI effects library for modern web applications with optimized tree-shaking",
"repository": {
"type": "git",
"url": "https://github.com/rad-ui/fx"
},
"homepage": "https://rad-ui.com/fx",
"bugs": {
"url": "https://github.com/rad-ui/fx/issues"
},
"files": [
"dist"
],
"exports": {
"./Fade": {
"types": "./dist/fx/Fade/index.d.ts",
"import": "./dist/fx/Fade/index.js",
"require": "./dist/fx/Fade/index.js"
},
"./Slide": {
"types": "./dist/fx/Slide/index.d.ts",
"import": "./dist/fx/Slide/index.js",
"require": "./dist/fx/Slide/index.js"
},
"./utils/motion-adapter": {
"types": "./dist/utils/motion-adapter.d.ts",
"import": "./dist/utils/motion-adapter.js",
"require": "./dist/utils/motion-adapter.js"
},
"./version": {
"types": "./dist/version.d.ts",
"import": "./dist/version.js",
"require": "./dist/version.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"dev": "tsc --watch",
"test": "echo \"No tests specified - skipping tests\" && exit 0",
"test:watch": "echo \"No tests specified - skipping tests\" && exit 0",
"test:coverage": "echo \"No tests specified - skipping tests\" && exit 0",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"storybook": "storybook dev -p 6006",
"sb": "npm run storybook",
"build-storybook": "storybook build",
"predeploy-storybook": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"prepublishOnly": "npm run lint && npm run build",
"release:patch": "npm version patch && node ./scripts/update-version.js && git add . && git commit -m \"chore: update version in version.ts\" && git push && git push --tags",
"release:minor": "npm version minor && node ./scripts/update-version.js && git add . && git commit -m \"chore: update version in version.ts\" && git push && git push --tags",
"release:major": "npm version major && node ./scripts/update-version.js && git add . && git commit -m \"chore: update version in version.ts\" && git push && git push --tags",
"publish:latest": "npm publish --access public",
"publish:beta": "npm publish --tag beta --access public",
"publish:alpha": "npm publish --tag alpha --access public",
"release": "npm run lint && npm run build && npm run release:patch && npm run publish:latest",
"release:beta": "npm run lint && npm run build && npm run release:patch && npm run publish:beta"
},
"keywords": [
"ui",
"effects",
"animation",
"typescript",
"react"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@eslint/js": "^9.26.0",
"@radui/ui": "^0.0.38",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/builder-vite": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-vite": "^8.6.12",
"@storybook/test": "^8.6.12",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"storybook": "^8.6.12",
"typescript": "^5.8.3",
"vite": "^6.3.4"
},
"dependencies": {
"motion": "^12.9.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}