-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.87 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
{
"name": "from-to.js",
"version": "0.0.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/zhangyu1818/from-to",
"author": {
"name": "zhangyu1818",
"url": "https://zhangyu.dev"
},
"repository": {
"url": "https://github.com/zhangyu1818/from-to.git"
},
"description": "A lightweight animation library that offers tween and spring animations, with a gzip compressed size of just 1kb.",
"keywords": [
"animation",
"animate",
"tween",
"spring"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:site": "vite build -c vite.site.config.ts",
"preview": "vite preview",
"lint": "eslint --ext .ts lib/**",
"deploy": "gh-pages -d build",
"prepare": "husky install"
},
"packageManager": "pnpm@8.5.1",
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint",
"prettier --write"
]
},
"devDependencies": {
"@nx-js/observer-util": "^4.2.2",
"@rollup/plugin-typescript": "^11.1.1",
"@tweakpane/core": "^1.1.9",
"@tweakpane/plugin-essentials": "^0.1.8",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"tweakpane": "^3.1.10",
"typescript": "^5.0.2",
"vite": "^4.3.9"
},
"dependencies": {
"bezier-easing": "^2.1.0"
}
}