mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 07:21:46 +01:00
chore: migrate to @nuxt/module-builder
This commit is contained in:
29
package.json
29
package.json
@@ -4,27 +4,33 @@
|
||||
"repository": "https://github.com/nuxtlabs/ui",
|
||||
"license": "MIT",
|
||||
"exports": {
|
||||
".": "./dist/module.mjs"
|
||||
".": {
|
||||
"import": "./dist/module.mjs",
|
||||
"require": "./dist/module.cjs"
|
||||
}
|
||||
},
|
||||
"main": "./dist/module.mjs",
|
||||
"types": "./dist/module.d.ts",
|
||||
"main": "./dist/module.cjs",
|
||||
"types": "./dist/types.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"build": "nuxt-module-build",
|
||||
"prepack": "yarn build",
|
||||
"dev": "nuxi dev docs",
|
||||
"build:docs": "nuxi build docs",
|
||||
"postbuild:docs": "mv ./docs/.vercel_build_output .vercel_build_output",
|
||||
"lint": "eslint --ext .ts,.js,.vue ."
|
||||
"lint": "eslint --ext .ts,.js,.vue .",
|
||||
"release": "yarn lint && standard-version && git push --follow-tags"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/kit": "npm:@nuxt/kit-edge@latest",
|
||||
"@headlessui/vue": "^1.4.3",
|
||||
"@iconify-json/heroicons-outline": "^1.0.2",
|
||||
"@iconify-json/heroicons-solid": "^1.0.2",
|
||||
"@popperjs/core": "^2.11.2",
|
||||
"@unocss/nuxt": "^0.22.4",
|
||||
"@vueuse/core": "^7.5.3",
|
||||
"@unocss/nuxt": "^0.22.5",
|
||||
"@vueuse/core": "^7.5.4",
|
||||
"defu": "^5.0.1",
|
||||
"gradient-avatar": "^1.0.2",
|
||||
"lodash-es": "^4.17.21",
|
||||
@@ -32,12 +38,15 @@
|
||||
"pathe": "^0.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nuxt/schema": "npm:@nuxt/schema-edge@latest",
|
||||
"@nuxt/module-builder": "0.1.6",
|
||||
"@nuxtjs/eslint-config-typescript": "^8.0.0",
|
||||
"@types/lodash-es": "^4.17.5",
|
||||
"@vueuse/components": "^7.5.3",
|
||||
"@vueuse/components": "^7.5.4",
|
||||
"eslint": "^8.7.0",
|
||||
"nuxt3": "latest",
|
||||
"unbuild": "^0.6.7"
|
||||
"standard-version": "^9.3.2"
|
||||
},
|
||||
"build": {
|
||||
"externals": ["@unocss/preset-uno"]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user