-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@cznethub/cznet-vue-core",
"version": "0.4.0",
"private": false,
"keywords": [
"cznet",
"vue",
"vue 3",
"vuetify",
"form",
"jsonforms",
"jsonschema",
"schema",
"uischema"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.esm.js",
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"import": "./dist/index.js"
},
"./styles": {
"require": "./dist/index.css",
"import": "./dist/index.css"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"dev": "vite --mode dev",
"build": "npm run clean:dist && vite build --mode prod && npm run build:types",
"build:types": "vue-tsc --declaration --emitDeclarationOnly || exit 0",
"pub": "npm publish --access public",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run clean:coverage && vitest --mode test",
"up": "taze major -I",
"link": "npm link"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"@jsonforms/core": "^3.2.1",
"@jsonforms/vue": "^3.2.1",
"@mdi/font": "^7.4.47",
"@vue/composition-api": "^1.7.1",
"vue": "^3.4.21",
"vue-facing-decorator": "^4.0.1",
"vuetify": "^3.13.2"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"ajv-errors": "^3.0.0",
"ajv-keywords": "^5.1.0",
"dayjs": "^1.11.23",
"google-maps": "^4.3.3",
"leaflet": "^1.9.4",
"lodash-es": "^4.18.1",
"markdown-it": "^14.3.1",
"pretty-bytes": "^7.1.2",
"rxjs": "^7.8.2",
"sprintf-js": "^1.1.3",
"v-mask": "^2.3.0",
"vue-easy-dnd": "^2.2.2",
"vue-facing-decorator": "^4.0.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^7.3.1",
"@jsonforms/core": "^3.8.0",
"@jsonforms/vue": "^3.8.0",
"@mdi/font": "^7.4.47",
"@types/leaflet": "^1.9.22",
"@types/lodash-es": "^4.17.12",
"@types/node": "^26.3.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/eslint-config-prettier": "^10.2.0",
"ajv": "^8.20.0",
"eslint": "^10.9.1",
"eslint-plugin-cypress": "^6.4.4",
"eslint-plugin-prettier": "^5.5.6",
"happy-dom": "^20.12.0",
"rimraf": "^6.1.3",
"rollup-plugin-visualizer": "^7.1.1",
"sass": "^1.103.1",
"stylelint": "^17.14.1",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"taze": "^19.17.2",
"typescript": "^5.9.3",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"vue": "^3.5.42",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.11",
"vuetify": "^3.13.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cznethub/cznet-vue-core.git"
},
"author": "Maurier Ramirez",
"license": "ISC",
"bugs": {
"url": "https://github.com/cznethub/cznet-vue-core/issues"
},
"homepage": "https://github.com/cznethub/cznet-vue-core#readme"
}