-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 889 Bytes
/
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
{
"name": "twitch-multitask-task-list-overlay",
"version": "2.0.0",
"description": "Interactive multitask task list overlay for streamer",
"author": "Jujoco",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jujoco/twitch-multitask-task-list-overlay.git"
},
"keywords": [
"twitch overlay",
"chatbot",
"multitask task list",
"twitch",
"streamer"
],
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"main": "./src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"release": "standard-version",
"release:minor": "standard-version --release-as minor"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.8",
"jsdom": "^25.0.1",
"standard-version": "^9.5.0",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}