-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
124 lines (124 loc) · 3.33 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "spring-easing",
"version": "2.3.3",
"type": "module",
"sideEffects": false,
"description": "Quick and easy spring animations. Works with other animation libraries (animejs, framer motion, motion one, @okikio/animate, etc...) or the Web Animation API (WAAPI).",
"umd": "SpringEasing",
"access": "public",
"legacy": "lib/index.js",
"main": "lib/index.cjs",
"types": "lib/index.d.ts",
"browser": "lib/index.mjs",
"module": "lib/index.mjs",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"browser": "./lib/index.mjs",
"unpkg": "./lib/index.mjs",
"legacy": "./lib/index.js",
"default": "./lib/index.mjs"
},
"./lib/*": "./lib/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"directories": {
"lib": "./lib",
"src": "./src"
},
"files": [
"lib",
"src"
],
"scripts": {
"typedoc": "esbuild ./.typedoc/typedoc.tsx --format=cjs --outfile=./.typedoc/typedoc.cjs && typedoc && esno ./.typedoc/rehype.ts",
"preview": "vite docs",
"start": "vite docs",
"fixtures": "vite tests/fixture",
"test": "vitest",
"test:run": "vitest run",
"repl": "esno repl.ts",
"build": "vite build",
"pre-release": "pnpm test:run && pnpm build && pnpm typedoc",
"semantic-release": "semantic-release"
},
"changelog": {
"repo": "spring-easing",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"revert": ":rewind: Revert"
},
"cacheDir": ".changelog"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS --verbose"
}
},
"repository": {
"type": "git",
"url": "https://github.com/okikio/spring-easing.git"
},
"keywords": [
"spring-easing",
"typescript",
"animation",
"easing",
"spring",
"framer-motion",
"motion-one",
"@okikio/animate",
"web-animation-api",
"waapi",
"linear-easing",
"css-spring-easing",
"custom-easing"
],
"author": {
"name": "Okiki Ojo",
"email": "[email protected]",
"url": "https://okikio.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/okikio/spring-easing/issues"
},
"homepage": "https://spring-easing.okikio.dev",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.2.1",
"@types/web": "^0.0.99",
"esbuild": "^0.17.19",
"esno": "^0.16.3",
"fast-glob": "^3.2.12",
"hastscript": "^7.2.0",
"husky": "^8.0.3",
"pnpm": "^8.5.1",
"rehype-accessible-emojis": "^0.3.2",
"rehype-external-links": "^2.1.0",
"rehype-parse": "^8.0.4",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"rehype-urls": "^1.1.1",
"semantic-release": "^21.0.2",
"typedoc": "^0.24.7",
"typedoc-plugin-extras": "^2.3.3",
"typedoc-plugin-inline-sources": "^1.0.1",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "^5.0.4",
"unified": "^10.1.2",
"vite": "^4.3.8",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.1"
}
}