forked from stefanforsberg/mobtimerneujs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"name": "mobtimer",
"private": true,
"version": "2.7.1",
"description": "Mob timer",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"update": "npx @neutralinojs/neu update",
"start": "npx @neutralinojs/neu run -- --window-enable-inspector",
"build": "npx @neutralinojs/neu build --release",
"package": "node package-release.js",
"release": "npm run build && npm run package",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jouni-kantola/mobtimer.git"
},
"author": "Jouni Kantola <[email protected]> (https://github.com/jouni-kantola)",
"license": "ISC",
"bugs": {
"url": "https://github.com/jouni-kantola/mobtimer/issues"
},
"homepage": "https://github.com/jouni-kantola/mobtimer#readme",
"dependencies": {
"@neutralinojs/lib": "^5.1.0",
"nanoid": "^5.0.7",
"vue": "^3.4.21"
},
"devDependencies": {
"@neutralinojs/neu": "^11.0.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"@vue/test-utils": "^2.4.5",
"adm-zip": "^0.5.12",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rcedit": "^4.0.1",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.11"
},
"lint-staged": {
"**/*": "npx prettier --write --ignore-unknown"
}
}