-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 907 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": "take-it-ease",
"description": "Smooth object animations with well TS bindings and advanced merging strategies",
"keywords": [
"animations",
"animating objects",
"tween.js",
"easings",
"ease",
"easing objects"
],
"homepage": "https://github.com/Aliath/take-it-ease",
"license": "MIT",
"version": "1.0.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "tsc",
"release": "pnpm run build && pnpm publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"@vitest/coverage-istanbul": "^0.28.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.28.2"
},
"dependencies": {
"rfdc": "^1.3.0"
}
}