-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "main-thread-scheduling",
"version": "11.0.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",
"background",
"user-visible",
"task",
"idle",
"yield",
"defer",
"postpone",
"thread",
"threads",
"threading",
"scheduling",
"scheduler",
"isInputPending",
"MessageChannel",
"main-thread",
"event loop",
"worker",
"web worker"
],
"module": "index.js",
"jsnext:main": "index.js",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "yarn run build && if [[ -z $CI ]]; then jest --coverage --coverageReporters=text; else jest --coverage; fi",
"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",
"src/*.js",
"index.d.ts",
"src/*.d.ts"
],
"devDependencies": {
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"np": "^7.6.1",
"prettier": "^2.7.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"vite": "^5.0.11"
},
"dependencies": {
"p-is-promise": "^4.0.0"
}
}