-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 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
{
"name": "motion-frame",
"version": "2.0.2",
"description": "A Typescript lambda animation / easing engine",
"main": "dist/cjs/motion.js",
"module": "dist/esm/motion.js",
"types": "dist/esm/motion.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/motion.js",
"require": "./dist/cjs/motion.js"
}
},
"scripts": {
"build": "rm -rf dist/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"clear": "rm -R ./node_modules ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrSimmmons/motion-frame.git"
},
"author": "Simon Watson <@MrSimmmons>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrSimmmons/motion-frame/issues"
},
"homepage": "https://github.com/MrSimmmons/motion-frame#readme",
"keywords": [
"animation",
"requestAnimationFrame",
"typescript",
"javascript",
"lambda",
"lerp"
],
"devDependencies": {
"typescript": "^4.8.4"
}
}