-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "split-text-react",
"version": "0.0.2",
"author": "Julio Salas",
"repository": {
"url": "https://github.com/julio-salas03/split-text-react.git"
},
"main": "./index.js",
"module": "./index.mjs",
"devDependencies": {
"@chromatic-com/storybook": "^1.8.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@swc/core": "^1.7.22",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-resizable": "^3.0.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable": "^3.0.5",
"resize-observer-polyfill": "^1.5.1",
"storybook": "^8.2.9",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": ">=16"
},
"bugs": {
"url": "https://github.com/julio-salas03/split-text-react/issues"
},
"description": "",
"files": [
"./index.js",
"./index.mjs",
"./index.d.ts",
"./index.d.mts"
],
"homepage": "https://github.com/julio-salas03/split-text-react#readme",
"license": "MIT",
"scripts": {
"build": "tsup",
"test": "jest",
"prettier:check": "prettier --check ./*",
"prettier:format": "prettier --write ./*",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "npm run build && cp ./dist/* . && npm publish && git clean -fd"
},
"types": "./index.d.ts"
}