-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 1.87 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
{
"name": "wp-typeit",
"email": "alex@macarthur.me",
"url": "https://macarthur.me",
"description": "Easily create typewriter effects using the JavaScript utility, TypeIt.",
"license": "GPL-2.0",
"main": "typeit.php",
"version": "3.2.0",
"repository": {
"type": "git",
"url": "https://github.com/alexmacarthur/wp-typeit"
},
"bugs": {
"url": "https://github.com/alexmacarthur/wp-typeit/issues"
},
"scripts": {
"start": "wp-scripts start --config ./webpack.config.js",
"build": "wp-scripts build --config ./webpack.config.js",
"lint": "eslint --fix ./src",
"prettier": "prettier --write \"**/*.{md,js,ts}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"homepage": "https://typeitjs.com",
"keywords": [
"text effect",
"wordpress",
"typewriter"
],
"devDependencies": {
"@types/web-animations-js": "^2.2.16",
"@wordpress/scripts": "30.9.0",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@wordpress/components": "^29.2.0",
"@wordpress/compose": "^7.16.0",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"array-move": "^4.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-sortable-hoc": "^2.0.0",
"typeit": "^8.8.7"
}
}