-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.37 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
{
"name": "nuxt-hue",
"type": "module",
"version": "0.4.25",
"packageManager": "[email protected]",
"description": "Enlighten your Nuxt experience",
"author": "Lucie Haberer <[email protected]> (https://lihbr.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://[email protected]/lihbr/nuxt-hue.git"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"typescript",
"hue"
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./plugin": {
"import": "./dist/plugin.mjs",
"require": "./dist/plugin.cjs"
},
"./package.json": "./package.json"
},
"main": "dist/module.cjs",
"module": "dist/module.mjs",
"types": "dist/types.d.ts",
"bin": {
"nuxt-hue": "bin/cli.js"
},
"files": [
"bin",
"dist",
"postinstall.js",
"src"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "vite build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"postinstall": "node postinstall.js",
"lint": "eslint .",
"prepare": "nuxi prepare playground && pnpm build",
"release": "pnpm test && standard-version --release-as patch && git push --follow-tags && pnpm build && npm publish",
"release:dry": "standard-version --release-as patch --dry-run",
"release:rc": "pnpm test && standard-version --release-as major --prerelease rc && git push --follow-tags && pnpm build && npm publish --tag rc",
"release:rc:dry": "standard-version --release-as major --prerelease rc --dry-run",
"typecheck": "tsc --noEmit",
"test": "pnpm lint && pnpm typecheck && pnpm unit && pnpm build",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch"
},
"dependencies": {
"@lihbr/listr-update-renderer": "^0.5.3",
"@nuxt/kit": "^3.12.1",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"execa": "^6.1.0",
"exit": "^0.1.2",
"inquirer": "^9.2.23",
"listr": "^0.14.3",
"node-fetch": "^2.7.0",
"rc9": "^2.1.2",
"rxjs": "^7.8.1",
"std-env": "^3.7.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@lihbr/eslint-config": "^0.0.2",
"@types/exit": "^0.1.33",
"@types/inquirer": "^9.0.7",
"@types/listr": "^0.14.9",
"@types/node-fetch": "^2.6.11",
"@vitest/coverage-c8": "^0.25.2",
"eslint": "^9.4.0",
"nuxt": "^3.12.1",
"standard-version": "^9.5.0",
"vite": "^5.3.1",
"vite-plugin-sdk": "^0.1.2",
"vitest": "^0.25.2"
},
"publishConfig": {
"access": "public"
}
}