83d8035dc2
* root + server * frontend * frontend-2 * dui3 * dui3 * tailwind theme * ui-components * preview service * viewer * viewer-sandbox * fileimport-service * webhook service * objectloader * shared * ui-components-nuxt * WIP full config * WIP full linter * eslint projectwide util * minor fix * removing redundant ci * clean up test errors * fixed prettier formatting * CI improvements * TSC lint fix * 'buildBatch' needs to be async since some batch types (like Text) require it. Removed a disabled liniting rule from ObjLoader * removed unnecessary void --------- Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
33 lines
802 B
JSON
33 lines
802 B
JSON
{
|
|
"name": "@speckle/ui-components-nuxt",
|
|
"description": "Companion Nuxt module for @speckle/ui-components",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"lint:js": "eslint .",
|
|
"lint:prettier": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check .",
|
|
"lint": "yarn lint:js && yarn lint:prettier",
|
|
"lint:ci": "echo 1"
|
|
},
|
|
"type": "module",
|
|
"module": "index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.js"
|
|
}
|
|
},
|
|
"peerDependencies": {
|
|
"@nuxt/kit": "^3.2.0",
|
|
"@speckle/ui-components": "*"
|
|
},
|
|
"dependencies": {
|
|
"lodash-es": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxt/kit": "^3.8.2",
|
|
"@speckle/ui-components": "workspace:^",
|
|
"eslint": "^9.4.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"prettier": "^2.7.1"
|
|
}
|
|
}
|