-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.41 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
{
"name": "@vueless/nuxt",
"version": "0.0.7",
"license": "MIT",
"description": "Nuxt Styleless UI Component Library, powered by Tailwind CSS.",
"keywords": [
"vueless",
"nuxt",
"nuxt.js",
"nuxt3",
"ui library",
"component library",
"nuxt framework",
"design system",
"tailwind",
"tailwindcss",
"unstyled",
"styleless",
"headlessui",
"ui"
],
"homepage": "https://vueless.com",
"author": "Johnny Grid",
"type": "module",
"publishConfig": {
"access": "public"
},
"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": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"prepack": "nuxt-module-build build && cp package.json LICENSE README.md dist/",
"release:patch": "release-it patch --ci --npm.publish",
"release:minor": "release-it minor --ci --npm.publish --git.tag --github.release",
"release:major": "release-it major --ci --npm.publish --git.tag --github.release",
"lint": "eslint .",
"lint:ci": "eslint --no-fix --max-warnings=0",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"install": "npx nuxi prepare"
},
"dependencies": {
"@nuxt/kit": "^3.13.1",
"@nuxtjs/tailwindcss": "^6.12.1",
"defu": "^6.1.4",
"pathe": "^1.1.2",
"vueless": "0.0.774"
},
"devDependencies": {
"@material-symbols/svg-500": "^0.25.0",
"@nuxt/devtools": "^1.4.1",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.1",
"@types/node": "latest",
"changelogen": "^0.5.5",
"eslint": "^9.12.0",
"nuxt": "^3.15.4",
"release-it": "^17.6.0",
"typescript": "latest",
"vitest": "^3.0.5",
"vue-tsc": "^2.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuelessjs/vueless-module-nuxt.git"
},
"bugs": {
"url": "https://github.com/vuelessjs/vueless-module-nuxt/issues"
},
"web-types": "./node_modules/vueless/web-types.json"
}