-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1010 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1010 Bytes
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
{
"name": "typify.js",
"version": "1.2.1",
"description": "typify.js is a lightweight utility function that creates an auto-typing effect for your text",
"author": "Sam K Thampan (https://devsk18.github.io/samkthampan)",
"homepage": "https://devsk18.github.io/typify.js/",
"license": "MIT",
"type": "module",
"main": "./dist/typify.cjs.cjs",
"module": "./dist/typify.esm.js",
"exports": {
".": {
"import": "./dist/typify.esm.js",
"require": "./dist/typify.cjs.cjs"
}
},
"source": "./src/typify.js",
"unpkg": "./dist/typify.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/devsk18/typify.js.git"
},
"bugs": {
"url": "https://github.com/devsk18/typify.js/issues"
},
"keywords": [
"typify",
"typify.js",
"typing animation",
"typing effect"
],
"devDependencies": {
"@rollup/plugin-terser": "^1.0.0",
"rollup": "^4.60.1"
}
}