-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "typeinit",
"version": "1.3.2",
"description": "An Intuitive Javascript Typing Animation Library",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js",
"types": "./dist/types/index.d.ts"
}
},
"keywords": [
"typeinit",
"javascript",
"typescript",
"animation",
"typing",
"typing effect",
"typewriter",
"typewriter effect",
"type effect",
"text effects"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest __tests__/",
"test:dom": "vitest --dom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eroblaze/typeinit.git"
},
"author": "Paul Eboselume",
"license": "MIT",
"bugs": {
"url": "https://github.com/eroblaze/typeinit/issues"
},
"homepage": "https://github.com/eroblaze/typeinit#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"happy-dom": "^6.0.4",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"vite": "^2.9.17",
"vitest": "^0.16.0"
}
}