-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 KB
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
{
"name": "@ez-kits/form",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"nx": "nx",
"build": "nx run-many --projects=packages/** --target=build --parallel=11",
"dev": "nx run-many --projects=packages/** --target=dev --parallel=11",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"publish-packages": "node scripts/publish.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@solidjs/router": "^0.8.2",
"@solidjs/testing-library": "^0.8.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@testing-library/vue": "^7.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.7.4",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.1",
"fast-glob": "^3.3.1",
"gray-matter": "^4.0.3",
"jsdom": "^22.1.0",
"markdown-it": "^14.1.0",
"markdown-it-conditional-render": "^0.1.0",
"nx": "20.0.12",
"nx-cloud": "latest",
"p-map": "^7.0.2",
"semver": "^7.5.4",
"vite-plugin-restart": "^0.4.1",
"vite-plugin-solid": "^2.7.0",
"vitepress": "^1.3.4",
"vitepress-plugin-sandpack": "^1.1.4",
"vitepress-plugin-tabs": "^0.5.0",
"vitest": "^2.1.4"
},
"nx": {
"targets": {}
},
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "yarn@1.22.17",
"dependencies": {
"@vue/tsconfig": "^0.5.1"
}
}