-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.61 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-stagger-text",
"version": "1.0.6",
"description": "A React TS component for creating staggered text animation by word or letters, when in viewport",
"author": "Stephen Scaff <stephenscaff.com>",
"homepage": "https://stephenscaff.github.io/react-stagger-text/",
"repository": {
"type": "git",
"url": "https://github.com/stephenscaff/react-stagger-text"
},
"bugs": {
"url": "https://github.com/stephenscaff/react-stagger-text/issues"
},
"license": "ISC",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"browser": "dist/index.umd.js",
"files": [
"dist/index.js",
"dist/index.es.js",
"dist/index.umd.js",
"dist/index.d.ts"
],
"targets": {
"main": false,
"module": false,
"browser": false,
"types": false
},
"directories": {
"docs": "docs"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "rollup -c",
"dev": "parcel ./docs/src/index.html --dist-dir ./docs/dist",
"docs:clean": "rm -rf ./docs/dist",
"docs:start": "parcel ./docs/src/index.html --dist-dir ./docs/dist",
"docs:build": "parcel build ./docs/src/index.html --dist-dir ./docs/dist --public-url ./",
"docs:deploy": "npm run docs:build && gh-pages -d ./docs/dist",
"prepare": "npm run build",
"prepublish": "rm -rf ./dist && npm run build",
"lint": "eslint \"src/**/*.+(ts|tsx)\" --fix ",
"format": "prettier --write \"src/**/*.+(ts|tsx)\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"react stagger text",
"stagger",
"stagger text",
"stagger animation",
"text animation",
"text effect"
],
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.9.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.0.0",
"parcel": "^2.9.3",
"prettier": "^3.0.2",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^5.1.6"
}
}