-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "textify.js",
"version": "3.0.1",
"description": "Next Generation Text Animation Library",
"main": "./dist/Textify.min.js",
"module": "./src/index.js",
"keywords": [
"Text-Animation",
"Text-Animation-Library",
"scroll-based-text-animation",
"textify.js"
],
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack",
"lint": "eslint \"./src/**/*.js\" --fix",
"format": "prettier --write \"./src/**/*.js\"",
"start": "webpack-dev-server --mode development --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MAGGIx1404/Textify.js.git"
},
"author": "Jeet (MAGGIx1404)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MAGGIx1404/Textify.js/issues"
},
"homepage": "https://github.com/MAGGIx1404/Textify.js#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^3.0.0",
"size-plugin": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"uglify-js": "^3.16.2",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.9.3"
}
}