-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.77 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.77 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
{
"name": "typecraft-fx",
"description": "TypecraftFX is a feature-rich library that brings dynamic typing animations to your web projects.",
"version": "1.0.0",
"type": "module",
"main": "./dist/typecraft-fx.umd.js",
"module": "./dist/typecraft-fx.es.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"keywords": [
"react",
"typescript",
"animation",
"typing",
"text-effect",
"cursor",
"effects",
"typing-effect",
"react-typing-effect",
"typecraft",
"typecraft-fx",
"typecraft-react",
"typecraft-text-effect",
"typecraft-cursor",
"typecraft-effects",
"typecraft-typing",
"typecraft-animation",
"typecraft-react-effects",
"typecraft-react-cursor",
"typecraft-react-text-effect",
"typecraft-react-typing",
"typecraft-react-animation"
],
"author": "Deepak Biswal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deepakb/typecraft-fx.git"
},
"bugs": {
"url": "https://github.com/deepakb/typecraft-fx/issues"
},
"exports": {
".": {
"import": "./dist/typecraft-fx.es.js",
"require": "./dist/typecraft-fx.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"devDependencies": {
"@storybook/addon-docs": "^8.3.5",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/builder-vite": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@storybook/test": "^8.3.5",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"husky": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"terser": "^5.34.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vitest": "^2.1.2"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
}
}