-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
package.json
36 lines (36 loc) · 858 Bytes
/
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
{
"name": "typed.js",
"version": "2.1.0",
"homepage": "https://github.com/mattboldt/typed.js",
"repository": "https://github.com/mattboldt/typed.js",
"license": "MIT",
"author": "Matt Boldt",
"description": "A JavaScript Typing Animation Library",
"type": "module",
"source": "src/typed.js",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"exports": {
"require": "./dist/typed.cjs",
"import": "./dist/typed.module.js",
"types": "./index.d.ts"
},
"main": "./dist/typed.cjs",
"module": "./dist/typed.module.js",
"unpkg": "./dist/typed.umd.js",
"keywords": [
"typed",
"animation"
],
"devDependencies": {
"microbundle": "^0.15.1"
},
"scripts": {
"build": "microbundle --name=Typed",
"dev": "microbundle --name=Typed watch",
"diff": "git diff -- ':^docs'"
}
}