mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-10 20:18:50 +08:00
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "my-module",
|
|
"version": "1.0.0",
|
|
"description": "My new Nuxt module",
|
|
"repository": "your-org/my-module",
|
|
"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",
|
|
"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 test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
"lint": "eslint .",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch",
|
|
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/kit": "^3.14.159"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxt/devtools": "^1.6.0",
|
|
"@nuxt/eslint-config": "^0.7.0",
|
|
"@nuxt/module-builder": "^0.8.4",
|
|
"@nuxt/schema": "^3.14.159",
|
|
"@nuxt/test-utils": "^3.14.4",
|
|
"@types/node": "latest",
|
|
"changelogen": "^0.5.7",
|
|
"eslint": "^9.15.0",
|
|
"nuxt": "^3.14.159",
|
|
"typescript": "latest",
|
|
"vitest": "^2.1.5",
|
|
"vue-tsc": "^2.1.10"
|
|
}
|
|
}
|