forked from canopas/nuxt-blog-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2 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
{
"name": "@canopassoftware/nuxt-blog-kit",
"version": "1.0.6",
"description": "Nuxt blog component library",
"keywords": [
"components",
"component library",
"nuxt library",
"nuxt module",
"nuxt3",
"canopas"
],
"repository": {
"type": "git",
"url": "git+https://github.com/canopas/nuxt-blog-kit.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build && tailwindcss -i src/runtime/assets/css/style.css -o ./dist/output.css --minify",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.7.4",
"@pinia/nuxt": "^0.5.0",
"axios": "^1.5.1",
"nuxt-icon": "^0.5.0",
"pinia": "^2.1.7"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.2",
"@nuxt/schema": "^3.7.4",
"@nuxt/test-utils": "^3.7.4",
"@nuxtjs/tailwindcss": "^6.8.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^18.18.1",
"changelogen": "^0.5.5",
"eslint": "^8.50.0",
"nuxt": "^3.7.4",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"vitest": "^0.33.0"
},
"bugs": {
"url": "https://github.com/canopas/nuxt-blog-kit/issues"
},
"homepage": "https://github.com/canopas/nuxt-blog-kit#readme",
"directories": {
"test": "test"
},
"author": "canopassoftware"
}