-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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
{
"name": "mini-timer",
"version": "2.0.2",
"description": "The tiniest timer to tick!",
"types": "./index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsdown",
"lint": "eslint src --fix",
"format": "npx prettier --write */**.ts",
"test": "vitest"
},
"keywords": [
"small",
"timer",
"mini",
"tiny",
"utility"
],
"author": "Torathion",
"homepage": "https://github.com/Torathion/mini-timer",
"repository": {
"type": "git",
"url": "git+https://github.com/Torathion/mini-timer.git"
},
"bugs": {
"url": "https://github.com/Torathion/mini-timer/issues"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"packageManager": "pnpm@10.28.1",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"tsdown": "^0.20.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}