-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
106 lines (106 loc) · 2.64 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
104
105
106
{
"name": "idle-task",
"version": "4.3.0",
"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:lint": "eslint src/",
"test:prettier": "prettier 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": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/node": "^20.11.8",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"bundlemon": "^2.0.2",
"eslint": "^8",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unused-imports": "3.2.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^6.0.0",
"prettier": "3.2.5",
"semantic-release": "23.0.8",
"ts-jest": "29.1.5",
"ts-loader": "9.5.1",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "5.4.5"
},
"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"
}
]
},
"packageManager": "pnpm@9.1.4"
}