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