-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.94 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
{
"name": "animatedtxt",
"author": "Michał Zendran",
"license": "MIT",
"version": "1.3.6",
"description": "This npm package provides components and methods for convenient creation of animated texts and characters.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack --mode=production",
"prepare": "npm run build",
"local": "npm run build && npm pack && mv animatedtxt-*.tgz ~/Desktop/test-anim-18/",
"lint": "npx eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zendranm/animatedtxt.git"
},
"keywords": [
"text",
"letter",
"character",
"animated",
"animation",
"motion",
"draw",
"react"
],
"bugs": {
"url": "https://github.com/zendranm/animatedtxt/issues"
},
"homepage": "https://github.com/zendranm/animatedtxt#readme",
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/eslint-parser": "7.22.15",
"@babel/eslint-plugin": "7.22.10",
"@babel/preset-env": "7.22.20",
"@babel/preset-react": "7.22.15",
"@babel/preset-typescript": "7.23.0",
"@types/node": "20.8.3",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.11",
"@types/styled-components": "5.1.28",
"@types/webpack": "5.28.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-loader": "9.1.3",
"eslint": "8.51.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-vazco": "7.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "2.8.8",
"styled-components": "6.0.8",
"ts-loader": "9.5.0",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"dependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}