json-tree-view-vue3
Version:
JSON tree rendering Vue3 component
76 lines (75 loc) • 2.19 kB
JSON
{
"name": "json-tree-view-vue3",
"version": "1.1.2",
"description": "JSON tree rendering Vue3 component",
"repository": {
"type": "git",
"url": "git+https://github.com/seijikohara/json-tree-view-vue3.git"
},
"keywords": [
"vue3",
"json",
"tree"
],
"author": "Seiji Kohara <sage.0118@gmail.com> (https://github.com/seijikohara)",
"license": "MIT",
"bugs": {
"url": "https://github.com/seijikohara/json-tree-view-vue3/issues"
},
"homepage": "https://github.com/seijikohara/json-tree-view-vue3#readme",
"type": "module",
"main": "./dist/json-tree-view-vue3.umd.cjs",
"module": "./dist/json-tree-view-vue3.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/json-tree-view-vue3.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/json-tree-view-vue3.umd.cjs"
}
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write src/",
"deps:update": "npx npm-check-updates -u && npm install",
"deps:check": "npx npm-check-updates",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.5.1",
"prettier": "^3.6.2",
"sass": "^1.94.2",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vue-tsc": "^3.1.4"
},
"peerDependencies": {
"vue": ">=3.2.0"
}
}