-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "main-thread-scheduling",
"version": "14.3.0",
"description": "Fast and consistently responsive apps using a single function call",
"license": "MIT",
"repository": "astoilkov/main-thread-scheduling",
"funding": "https://github.com/sponsors/astoilkov",
"homepage": "https://github.com/astoilkov/main-thread-scheduling",
"author": {
"name": "Antonio Stoilkov",
"email": "[email protected]",
"url": "https://astoilkov.com"
},
"keywords": [
"postTask",
"user-blocking",
"user-visible",
"background",
"smooth",
"task",
"idle",
"yield",
"defer",
"postpone",
"thread",
"threads",
"threading",
"scheduling",
"scheduler",
"isInputPending",
"MessageChannel",
"main-thread",
"event loop",
"worker",
"web worker",
"Core Web Vitals",
"INP",
"Interaction to Next Paint",
"performance"
],
"module": "index.js",
"jsnext:main": "index.js",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "yarn run build",
"release": "yarn run build && np",
"prettier": "prettier --write --config .prettierrc.yaml {*.ts,**/*.ts,*.json,**.json}",
"pg": "vite ./playground --open"
},
"engines": {
"node": ">=10"
},
"files": [
"index.js",
"index.d.ts",
"src/**/*.js",
"src/**/*.d.ts"
],
"devDependencies": {
"np": "^7.6.1",
"prettier": "^2.7.0",
"typescript": "^4.7.3",
"vite": "^5.0.12"
},
"dependencies": {
"p-is-promise": "^4.0.0"
}
}