-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "idle-task",
"version": "4.3.1",
"description": "Improve your website performance by executing JavaScript during a browser's idle periods🚀",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
"development": {
"types": "./dist/index.d.ts",
"require": "./dist/index.development.cjs",
"import": "./dist/index.development.mjs",
"default": "./dist/index.development.js"
},
"production": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"test": "run-p test:*",
"test:browser": "jest",
"test:server": "jest --env=node",
"test:check": "biome ci ./src",
"check": "biome check ./src",
"build": "tsup",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiroki0525/idle-task.git"
},
"keywords": [
"JavaScript",
"TypeScript",
"requestIdleCallback",
"Performance",
"Core Web Vitals"
],
"author": "Hiroki Miyaji",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiroki0525/idle-task/issues"
},
"homepage": "https://github.com/hiroki0525/idle-task#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/node": "^20.17.10",
"bundlemon": "^3.1.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^7.0.2",
"semantic-release": "24.2.1",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "5.7.3"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git",
"@semantic-release/release-notes-generator"
],
"branches": [
"main"
]
},
"bundlemon": {
"baseDir": "./dist",
"reportOutput": [
"github"
],
"files": [
{
"path": "index.cjs"
},
{
"path": "index.js"
}
]
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.3"
}