-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 970 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
37
38
39
{
"name": "bouncing-element",
"private": false,
"type": "module",
"version": "2.1.0",
"description": "JavaScript library to reproduce the famous DVD screensaver with any DOM element.",
"keywords": [
"typescript",
"animation"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "Jules Raffoux (https://julesrx.fr)",
"repository": "github:julesrx/bouncing-element",
"homepage": "https://github.com/julesrx/bouncing-element",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc && unbuild",
"release": "release-it"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"release-it": "^17.4.1",
"typescript": "^5.5.3",
"unbuild": "^2.0.0"
}
}