-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@into-the-v0id/animate",
"description": "Low level animation library for JavaScript",
"version": "0.2.0",
"type": "module",
"license": "MIT",
"author": {
"name": "Oliver Amann",
"url": "https://github.com/into-the-v0id"
},
"repository": {
"type": "git",
"url": "https://github.com/into-the-v0id/animate.js.git"
},
"homepage": "https://github.com/into-the-v0id/animate.js",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./dist/timing-functions.js": "./dist/timing-functions.js"
},
"files": [
"./dist/"
],
"scripts": {
"clean": "rm -rf ./dist/",
"ts:check": "tsc --noEmit",
"ts:build-types": "tsc --noEmit false --declaration --emitDeclarationOnly --outDir ./dist/",
"ts:build": "babel ./src/ --extensions .ts --out-dir ./dist/",
"build": "npm run clean && npm run ts:build-types && npm run ts:build"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@types/node": "^22.1.0",
"typescript": "^5.5.4"
}
}