-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "@operativeit/schema-form",
"version": "1.0.4",
"private": false,
"type": "module",
"files": [
"dist",
"README.md",
"LICENCE",
"VALIDATORS.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/operativeit/schema-form.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "./dist/schema-form.umd.js",
"module": "./dist/schema-form.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/schema-form.js",
"require": "./dist/schema-form.umd.js"
}
},
"scripts": {
"build": "vite build",
"type-check": "vue-tsc --noEmit",
"prepublishOnly": "npm run build",
"release": "npm publish"
},
"peerDependencies": {
"vue": "^3.3.0",
"vue-i18n": "^9.0.0"
},
"dependencies": {
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"lucide-vue-next": "^0.561.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/lodash": "^4.17.21",
"@types/node": "^20.0.0",
"@vitejs/plugin-vue": "^5.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^3.0.0",
"vue": "^3.5.26",
"vue-sonner": "^2.0.9",
"vue-tsc": "^2.0.0"
}
}