2022-03-31 00:33:29 +02:00
|
|
|
{
|
|
|
|
"name": "it-tools",
|
2024-12-14 12:15:18 +01:00
|
|
|
"type": "module",
|
2024-10-22 10:25:36 +02:00
|
|
|
"version": "2024.10.22-7ca5933",
|
2024-12-14 12:15:18 +01:00
|
|
|
"packageManager": "pnpm@9.11.0",
|
2022-07-21 21:06:28 +02:00
|
|
|
"description": "Collection of handy online tools for developers, with great UX. ",
|
2024-09-27 14:49:11 +02:00
|
|
|
"author": "Corentin Th <corentin.thomasset74+it-tools@gmail.com> (https://corentin.tech)",
|
|
|
|
"license": "GNU GPLv3",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/CorentinTh/it-tools"
|
|
|
|
},
|
2022-07-21 21:06:28 +02:00
|
|
|
"keywords": [
|
|
|
|
"productivity",
|
|
|
|
"converter",
|
|
|
|
"website",
|
|
|
|
"vuejs",
|
|
|
|
"tools",
|
|
|
|
"frontend",
|
|
|
|
"tool",
|
|
|
|
"developer-tools",
|
|
|
|
"developer-productivity"
|
|
|
|
],
|
2022-03-31 00:33:29 +02:00
|
|
|
"scripts": {
|
|
|
|
"dev": "vite",
|
2023-09-03 16:28:19 +02:00
|
|
|
"build": "vue-tsc --noEmit && NODE_OPTIONS=--max_old_space_size=4096 vite build",
|
2022-03-31 00:33:29 +02:00
|
|
|
"preview": "vite preview --port 5050",
|
2022-04-04 00:24:45 +02:00
|
|
|
"test": "npm run test:unit",
|
2022-03-31 00:33:29 +02:00
|
|
|
"test:unit": "vitest --environment jsdom",
|
2023-04-09 17:59:57 +02:00
|
|
|
"test:e2e": "playwright test",
|
2023-09-03 16:28:19 +02:00
|
|
|
"test:e2e:dev": "BASE_URL=http://localhost:5173 NO_WEB_SERVER=true playwright test",
|
2022-04-04 00:24:45 +02:00
|
|
|
"coverage": "vitest run --coverage",
|
2022-03-31 00:33:29 +02:00
|
|
|
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
2022-04-16 13:41:10 +02:00
|
|
|
"lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
|
2023-10-15 00:45:14 +02:00
|
|
|
"script:create:tool": "node scripts/create-tool.mjs",
|
|
|
|
"script:create:ui": "hygen generator ui-component",
|
2023-04-14 18:44:22 +02:00
|
|
|
"release": "node ./scripts/release.mjs"
|
2022-03-31 00:33:29 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-11 22:47:05 +02:00
|
|
|
"@it-tools/bip39": "^0.0.4",
|
2022-08-17 14:36:52 +02:00
|
|
|
"@it-tools/oggen": "^1.3.0",
|
2024-09-20 20:39:40 +02:00
|
|
|
"@regexper/render": "^1.0.0",
|
2023-10-18 03:23:34 -04:00
|
|
|
"@sindresorhus/slugify": "^2.2.1",
|
2024-10-25 11:17:08 -07:00
|
|
|
"@tabler/icons-vue": "^3.20.0",
|
2023-10-31 22:00:23 +01:00
|
|
|
"@tiptap/pm": "2.1.6",
|
|
|
|
"@tiptap/starter-kit": "2.1.6",
|
|
|
|
"@tiptap/vue-3": "2.0.3",
|
2024-03-03 11:37:09 +01:00
|
|
|
"@types/figlet": "^1.5.8",
|
2024-09-20 20:39:40 +02:00
|
|
|
"@types/markdown-it": "^13.0.7",
|
2022-04-04 00:24:45 +02:00
|
|
|
"@vicons/material": "^0.12.0",
|
|
|
|
"@vicons/tabler": "^0.12.0",
|
2023-08-21 19:57:59 +00:00
|
|
|
"@vueuse/core": "^10.3.0",
|
2023-06-29 20:20:28 +02:00
|
|
|
"@vueuse/head": "^1.0.0",
|
2023-08-10 00:10:19 +02:00
|
|
|
"@vueuse/router": "^10.0.0",
|
2022-04-18 10:16:59 +02:00
|
|
|
"bcryptjs": "^2.4.3",
|
2022-04-16 00:03:31 +02:00
|
|
|
"change-case": "^4.1.2",
|
2022-08-18 10:35:04 +02:00
|
|
|
"colord": "^2.9.3",
|
2023-04-06 00:10:19 +02:00
|
|
|
"composerize-ts": "^0.6.2",
|
2023-06-24 18:49:54 +02:00
|
|
|
"country-code-lookup": "^0.1.0",
|
2022-04-14 02:02:05 +02:00
|
|
|
"cron-validator": "^1.3.1",
|
2023-04-12 20:27:32 +02:00
|
|
|
"cronstrue": "^2.26.0",
|
2022-04-04 00:24:45 +02:00
|
|
|
"crypto-js": "^4.1.1",
|
2022-11-14 22:13:37 +01:00
|
|
|
"date-fns": "^2.29.3",
|
2023-11-15 00:15:41 +01:00
|
|
|
"dompurify": "^3.0.6",
|
2024-08-15 15:29:58 +02:00
|
|
|
"email-normalizer": "^1.0.0",
|
2023-08-08 09:19:43 +02:00
|
|
|
"emojilib": "^3.0.10",
|
2024-03-03 11:37:09 +01:00
|
|
|
"figlet": "^1.7.0",
|
2022-06-01 23:52:21 +02:00
|
|
|
"figue": "^1.2.0",
|
2022-12-16 18:10:50 +01:00
|
|
|
"fuse.js": "^6.6.2",
|
2023-03-19 11:59:43 +01:00
|
|
|
"highlight.js": "^11.7.0",
|
2023-06-23 21:33:54 +02:00
|
|
|
"iarna-toml-esm": "^3.0.5",
|
2023-08-27 20:12:31 +02:00
|
|
|
"ibantools": "^4.3.3",
|
2024-05-20 22:13:55 +02:00
|
|
|
"js-base64": "^3.7.6",
|
2023-03-19 11:59:43 +01:00
|
|
|
"json5": "^2.2.3",
|
2022-12-27 09:38:35 +01:00
|
|
|
"jwt-decode": "^3.1.2",
|
2023-05-01 16:43:45 +02:00
|
|
|
"libphonenumber-js": "^1.10.28",
|
2022-04-04 01:03:06 +02:00
|
|
|
"lodash": "^4.17.21",
|
2024-08-25 22:57:07 +02:00
|
|
|
"markdown-it": "^14.0.0",
|
2023-11-15 00:15:41 +01:00
|
|
|
"marked": "^10.0.0",
|
2023-08-21 19:57:59 +00:00
|
|
|
"mathjs": "^11.9.1",
|
2022-07-25 23:21:42 +02:00
|
|
|
"mime-types": "^2.1.35",
|
2023-09-11 22:40:42 +02:00
|
|
|
"monaco-editor": "^0.43.0",
|
2023-10-31 22:00:23 +01:00
|
|
|
"naive-ui": "^2.35.0",
|
2023-03-28 23:31:11 +02:00
|
|
|
"netmask": "^2.0.2",
|
2023-03-10 18:16:55 +01:00
|
|
|
"node-forge": "^1.3.1",
|
2023-11-14 23:44:23 +00:00
|
|
|
"oui-data": "^1.0.10",
|
2023-11-12 23:22:41 +01:00
|
|
|
"pdf-signature-reader": "^1.4.2",
|
2023-04-12 20:27:32 +02:00
|
|
|
"pinia": "^2.0.34",
|
2022-08-18 10:35:04 +02:00
|
|
|
"plausible-tracker": "^0.3.8",
|
|
|
|
"qrcode": "^1.5.1",
|
2024-09-20 20:39:40 +02:00
|
|
|
"randexp": "^0.5.3",
|
2023-09-03 16:51:12 +02:00
|
|
|
"sql-formatter": "^13.0.0",
|
2023-04-06 10:28:12 +02:00
|
|
|
"ua-parser-js": "^1.0.35",
|
2023-09-12 00:57:42 +02:00
|
|
|
"ulid": "^2.3.0",
|
2023-08-08 09:19:43 +02:00
|
|
|
"unicode-emoji-json": "^0.4.0",
|
2023-06-25 11:45:56 +02:00
|
|
|
"unplugin-auto-import": "^0.16.4",
|
2023-08-10 15:12:27 +02:00
|
|
|
"uuid": "^9.0.0",
|
2023-06-19 00:21:36 +02:00
|
|
|
"vue": "^3.3.4",
|
2024-02-11 00:33:52 +01:00
|
|
|
"vue-i18n": "^9.9.1",
|
2023-04-10 17:34:58 +02:00
|
|
|
"vue-router": "^4.1.6",
|
2024-09-20 20:39:40 +02:00
|
|
|
"vue-shadow-dom": "^4.2.0",
|
2023-06-27 17:59:05 +00:00
|
|
|
"vue-tsc": "^1.8.1",
|
2024-10-25 13:42:12 -07:00
|
|
|
"vuedraggable": "^4.1.0",
|
2023-06-18 12:27:26 +02:00
|
|
|
"xml-formatter": "^3.3.2",
|
2024-08-09 22:11:39 +02:00
|
|
|
"xml-js": "^1.6.11",
|
2023-04-10 17:34:58 +02:00
|
|
|
"yaml": "^2.2.1"
|
2022-03-31 00:33:29 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-26 16:28:31 +02:00
|
|
|
"@antfu/eslint-config": "^0.41.0",
|
2023-05-07 23:31:10 +02:00
|
|
|
"@iconify-json/mdi": "^1.1.50",
|
2024-02-11 00:33:52 +01:00
|
|
|
"@intlify/unplugin-vue-i18n": "^2.0.0",
|
2023-04-12 20:27:32 +02:00
|
|
|
"@playwright/test": "^1.32.3",
|
2022-11-14 22:13:37 +01:00
|
|
|
"@rushstack/eslint-patch": "^1.2.0",
|
2023-08-21 19:57:59 +00:00
|
|
|
"@tsconfig/node18": "^18.2.0",
|
2022-04-18 10:16:59 +02:00
|
|
|
"@types/bcryptjs": "^2.4.2",
|
2022-04-04 00:24:45 +02:00
|
|
|
"@types/crypto-js": "^4.1.1",
|
2023-11-15 00:15:41 +01:00
|
|
|
"@types/dompurify": "^3.0.5",
|
2023-06-24 18:55:46 +02:00
|
|
|
"@types/jsdom": "^21.0.0",
|
2023-03-28 23:31:11 +02:00
|
|
|
"@types/lodash": "^4.14.192",
|
2022-07-25 23:21:42 +02:00
|
|
|
"@types/mime-types": "^2.1.1",
|
2023-03-28 23:31:11 +02:00
|
|
|
"@types/netmask": "^2.0.0",
|
2023-08-21 19:57:59 +00:00
|
|
|
"@types/node": "^18.15.11",
|
2023-04-12 20:27:32 +02:00
|
|
|
"@types/node-forge": "^1.3.2",
|
2022-11-14 22:13:37 +01:00
|
|
|
"@types/qrcode": "^1.5.0",
|
2023-04-06 10:28:12 +02:00
|
|
|
"@types/ua-parser-js": "^0.7.36",
|
2023-08-10 15:12:27 +02:00
|
|
|
"@types/uuid": "^9.0.0",
|
2023-11-15 00:19:09 +01:00
|
|
|
"@unocss/eslint-config": "^0.57.0",
|
2023-08-21 19:57:59 +00:00
|
|
|
"@vitejs/plugin-vue": "^4.3.2",
|
|
|
|
"@vitejs/plugin-vue-jsx": "^3.0.2",
|
2023-05-07 23:31:10 +02:00
|
|
|
"@vue/compiler-sfc": "^3.2.47",
|
2023-06-19 00:21:36 +02:00
|
|
|
"@vue/runtime-dom": "^3.3.4",
|
2023-03-28 23:31:11 +02:00
|
|
|
"@vue/test-utils": "^2.3.2",
|
2023-08-21 19:57:59 +00:00
|
|
|
"@vue/tsconfig": "^0.4.0",
|
2023-04-14 18:44:22 +02:00
|
|
|
"consola": "^3.0.2",
|
2023-08-21 18:27:08 +00:00
|
|
|
"eslint": "^8.47.0",
|
2023-10-15 00:45:14 +02:00
|
|
|
"hygen": "^6.2.11",
|
2023-08-10 00:09:39 +02:00
|
|
|
"jsdom": "^22.0.0",
|
2022-08-18 10:35:04 +02:00
|
|
|
"less": "^4.1.3",
|
2023-08-21 18:02:54 +00:00
|
|
|
"prettier": "^3.0.0",
|
2023-08-26 16:17:19 +02:00
|
|
|
"typescript": "~5.2.0",
|
2024-12-14 12:15:18 +01:00
|
|
|
"unocss": "^0.65.1",
|
2023-08-07 17:30:00 +02:00
|
|
|
"unocss-preset-scrollbar": "^0.2.1",
|
2023-09-03 16:16:01 +02:00
|
|
|
"unplugin-icons": "^0.17.0",
|
2023-06-23 22:19:08 +02:00
|
|
|
"unplugin-vue-components": "^0.25.0",
|
2023-08-21 19:57:59 +00:00
|
|
|
"vite": "^4.4.9",
|
2023-07-05 16:29:58 +02:00
|
|
|
"vite-plugin-pwa": "^0.16.0",
|
2023-06-27 20:39:20 +02:00
|
|
|
"vite-plugin-vue-markdown": "^0.23.5",
|
2023-06-27 20:13:06 +02:00
|
|
|
"vite-svg-loader": "^4.0.0",
|
2023-08-10 16:15:18 +02:00
|
|
|
"vitest": "^0.34.0",
|
2023-06-27 20:29:41 +02:00
|
|
|
"workbox-window": "^7.0.0",
|
2023-04-14 18:44:22 +02:00
|
|
|
"zx": "^7.2.1"
|
2024-09-27 14:49:11 +02:00
|
|
|
}
|
2022-03-31 00:33:29 +02:00
|
|
|
}
|