-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "@fitx/inactive-timer",
"description": "Inactive Timer function with web worker Support. Starts a Timer and Reset them on User Interaction.",
"version": "2.3.0",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"main": "./dist/inactive-timer.umd.cjs",
"module": "./dist/inactive-timer.js",
"types": "./dist/lib/main.d.ts",
"exports": {
"types": "./dist/lib/main.d.ts",
"import": "./dist/inactive-timer.js",
"require": "./dist/inactive-timer.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc -P tsconfig.dts.json",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:bench": "vitest bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FitX/inactive-timer.git"
},
"keywords": [
"timer",
"countdown",
"vue"
],
"author": "Michael Raguse @top_webdesign",
"license": "ISC",
"bugs": {
"url": "https://github.com/FitX/inactive-timer/issues"
},
"homepage": "https://github.com/FitX/inactive-timer#readme",
"dependencies": {
"@vueuse/core": "^10.7.2",
"vue": "^3.4.15",
"worker-timers": "^7.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "latest",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.2.1",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.2.1"
}
}