primevue-mirror/package.json

82 lines
2.7 KiB
JSON
Raw Normal View History

{
"name": "primevue",
2024-05-15 12:04:07 +00:00
"version": "4.0.0-beta.3",
2023-03-02 08:32:40 +00:00
"homepage": "https://primevue.org/",
"repository": {
"type": "git",
"url": "https://github.com/primefaces/primevue.git"
},
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"build:lib": "npm run build:check && npm run build:package",
2024-03-27 13:25:46 +00:00
"build:package": "NODE_ENV=production rollup -c && node build-meta && node api-generator/build-api",
2023-06-21 14:07:12 +00:00
"build:check": "npm run format:check && npm run security:check",
"security:check": "npm audit --production --audit-level high",
2023-10-11 10:22:33 +00:00
"format": "prettier --write \"**/*.{js,vue,d.ts}\" --cache",
"format:check": "prettier --check \"**/*.{js,vue,d.ts}\"",
2023-04-28 16:33:57 +00:00
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
2023-04-05 23:06:03 +00:00
"test:coverage": "vitest run --coverage",
2023-09-18 02:33:52 +00:00
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore . --cache",
2023-02-28 08:29:30 +00:00
"lint:fix": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore .",
"apidoc": "node ./api-generator/build-apidoc.js",
"build:api": "node ./api-generator/build-api.js && npm run apidoc"
},
2023-03-02 19:00:07 +00:00
"keywords": [
"primevue",
"vue",
"vue.js",
"vue2",
"vue3",
"ui library",
"component library",
"material",
"bootstrap",
"fluent",
2023-08-11 09:20:58 +00:00
"tailwind",
2023-08-18 13:21:00 +00:00
"unstyled",
"passthrough"
2023-03-02 19:00:07 +00:00
],
"devDependencies": {
2022-12-22 13:20:07 +00:00
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
2023-02-28 08:29:30 +00:00
"@stackblitz/sdk": "^1.8.2",
2023-08-31 21:09:19 +00:00
"@vitejs/plugin-vue": "4.1.0",
2023-04-05 23:06:03 +00:00
"@vitest/coverage-istanbul": "^0.29.8",
"@vue/test-utils": "^2.0.0",
2024-05-18 07:48:06 +00:00
"autoprefixer": "^10.4.16",
"chart.js": "3.3.2",
2022-12-22 13:20:07 +00:00
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.4.0",
"jsdom": "^19.0.0",
"nuxt": "3.3.2",
2024-05-18 07:48:06 +00:00
"postcss": "^8.4.31",
2022-12-22 13:20:07 +00:00
"prettier": "2.7.1",
2024-03-29 11:49:59 +00:00
"primeicons": "^7.0.0",
"quill": "^1.3.7",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0-beta.9",
"sass": "^1.45.0",
"sass-loader": "^8.0.2",
2024-05-18 07:48:06 +00:00
"tailwindcss": "^3.4.1",
2023-02-28 08:29:30 +00:00
"typedoc": "0.23.23",
2023-03-04 17:18:40 +00:00
"typescript": "^4.9.4",
"vitest": "^0.29.8"
2023-03-04 17:18:40 +00:00
},
"dependencies": {
2023-03-15 14:50:39 +00:00
"@docsearch/js": "^3.3.3",
2023-08-31 21:09:19 +00:00
"nuxt-gtag": "^0.6.2",
2023-03-15 14:50:39 +00:00
"vee-validate": "^4.8.2"
}
}