-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@x-anything/workspace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "pnpm --filter @x-anything/play dev",
"story": "pnpm --filter @x-anything/play storybook",
"docs:dev": "pnpm --filter @x-anything/docs dev",
"docs:build": "pnpm --filter @x-anything/docs build",
"test": "run-s test-utils test-comp",
"test-comp": "cross-env NODE_ENV=test pnpm --filter @x-anything/components test",
"test-utils": "cross-env NODE_ENV=test pnpm --filter @x-anything/utils test",
"build": "run-s build-hooks build-comp",
"build-comp": "cross-env NODE_ENV=production pnpm --filter x-anything build",
"build-hooks": "cross-env NODE_ENV=production pnpm --filter @x-anything/hooks build",
"build:dev": "cross-env NODE_ENV=development pnpm --filter x-anything build:watch",
"changed": "dotenv lerna version --conventional-commits --create-release github --yes",
"changed:patch": "dotenv lerna version patch --conventional-commits --create-release github --yes",
"changed:major": "dotenv lerna version major --conventional-commits --create-release github --yes",
"release": "lerna publish from-package --yes"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@lerna-lite/cli": "3.8.0",
"@lerna-lite/publish": "3.8.0",
"@lerna-lite/version": "3.8.0",
"@popperjs/core": "^2.11.8",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.20",
"@types/shelljs": "^0.8.15",
"@vitejs/plugin-vue": "~5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"async-validator": "^4.2.5",
"concurrently": "8.2.2",
"conventional-changelog-conventionalcommits": "7.0.2",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"dotenv-cli": "^7.4.2",
"jsdom": "^24.1.1",
"npm-run-all": "^4.1.5",
"postcss-color-mix": "^1.1.0",
"postcss-each": "^1.1.0",
"postcss-each-variables": "^0.3.0",
"postcss-for": "^2.1.1",
"postcss-nested": "^6.0.1",
"release-it": "^17.6.0",
"sass": "^1.77.8",
"shelljs": "^0.8.5",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.4.0",
"vue-tsc": "^1.8.27",
"vue-virtual-scroller": "2.0.0-beta.3"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"@x-anything/hooks": "workspace:*",
"@x-anything/theme": "workspace:*",
"@x-anything/utils": "workspace:*",
"@x-anything/vite-plugins": "workspace:*",
"lodash-es": "^4.17.21",
"vue": "^3.4.29",
"x-anything": "workspace:*"
}
}