-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
{
"name": "tweenkie",
"version": "1.0.0",
"description": "Bytes-sized tweening function/library",
"main": "dist/tween.mjs",
"exports": {
".": {
"node": "./dist/server/tween.cjs",
"import": "./dist/tween.mjs",
"require": "./dist/tween.cjs",
"types": "./types/tween.d.mts"
},
"./simple": {
"node": "./dist/server/simple/tween.cjs",
"import": "./dist/simple/tween.mjs",
"require": "./dist/simple/tween.cjs",
"types": "./types/simple/tween.d.mts"
},
"./server": {
"import": "./dist/server/tween.mjs",
"require": "./dist/server/tween.cjs",
"types": "./types/tween.d.mts"
},
"./server/simple": {
"import": "./dist/server/simple/tween.mjs",
"require": "./dist/server/simple/tween.cjs",
"types": "./types/simple/tween.d.mts"
},
"./umd": {
"default": "./dist/umd/tween.js",
"types": "./types/tween.d.mts"
},
"./umd/simple": {
"default": "./dist/umd/simple/tween.js",
"types": "./types/simple/tween.d.mts"
}
},
"type": "module",
"types": "types/types.d.mts",
"files": [
"dist",
"types"
],
"scripts": {
"prepare": "npm run build",
"build": "rollup -c rollup.config.js"
},
"keywords": [
"tween",
"tweening",
"transition",
"animation",
"animate",
"ease",
"easing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imaginarny/tweenkie.git"
},
"author": {
"name": "Peter Genčur",
"url": "https://petergencur.com/"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.22.4"
},
"bugs": {
"url": "https://github.com/imaginarny/tweenkie/issues"
},
"homepage": "https://github.com/imaginarny/tweenkie#readme",
"jsdelivr": "dist/umd/tween.min.js",
"unpkg": "dist/umd/tween.min.js"
}