-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "@uveee/chrono",
"version": "0.3.0",
"description": "A library to manage requestAnimationFrame loops with priorities",
"private": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uvee-dev/chrono.git"
},
"sideEffects": false,
"source": "src/index.js",
"main": "dist/chrono.js",
"umd:main": "dist/chrono.umd.js",
"module": "dist/chrono.mjs",
"types": "dist/types/index.d.ts",
"exports": {
"require": "./dist/chrono.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/chrono.modern.mjs"
},
"scripts": {
"dev": "vite",
"clean": "rimraf dist",
"build": "npm-run-all --parallel clean build:dist build:types"
},
"keywords": [
"requestAnimationFrame",
"animation",
"performance",
"javascript",
"priority"
],
"author": "Uve <[email protected]>",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^4.4.1",
"typescript": "^5.5.3",
"vite": "^4.5.3"
}
}