-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.81 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
{
"name": "@duplojs/form",
"version": "0.0.0",
"author": {
"name": "mathcovax",
"url": "https://github.com/mathcovax"
},
"contributors": [
{
"name": "zeriix",
"url": "https://github.com/ZeRiix"
}
],
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/duplojs/form.git"
},
"scripts": {
"build": "./.commands/build.sh",
"dev:vue": "cd dev/vue && vite --config vite.config.js",
"dev:vue:integration": "npx -w integration/vue vite",
"docs:dev": "npm -w docs run docs:dev",
"docs:build": "npm -w docs run docs:build",
"docs:preview": "npm -w docs run docs:preview",
"test:tu": "vitest --coverage",
"test:tu:bench": "vitest bench",
"test:tu:watch": "vitest --coverage --watch",
"test:tu:update": "vitest --coverage --update",
"test:integration": "npm -w integration/vue run test",
"test:types": "./.commands/test-types.sh",
"test:lint": "./.commands/test-lint.sh",
"test:lint:fix": "./.commands/test-lint.sh --fix",
"prepare": "husky"
},
"exports": {
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.js",
"require": "./dist/vue/index.cjs"
},
"./vueGrid": {
"types": "./dist/vue/templates/grid/index.d.ts",
"import": "./dist/vue/templates/grid/index.js",
"require": "./dist/vue/templates/grid/index.cjs"
},
"./vueGrid.css": "./dist/vue/assets/index.css",
"./vueDesignSystem": {
"types": "./dist/vue/designSystem/index.d.ts",
"import": "./dist/vue/designSystem/index.js",
"require": "./dist/vue/designSystem/index.cjs"
},
"./vueDesignSystem.css": "./dist/vue/assets/index2.css"
},
"files": [
"dist",
"README.md"
],
"peerDependencies": {
"@duplojs/utils": ">=1.9.2 <2.0.0",
"vue": ">=3.5.30 <4.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@duplojs/dev-tools": "0.2.0",
"@duplojs/eslint": "0.5.0",
"@types/web": "^0.0.344",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-istanbul": "3.2.4",
"@vue/test-utils": "^2.4.6",
"eslint": "9.34.0",
"eslint-plugin-vue": "^10.8.0",
"husky": "9.1.7",
"jsdom": "^29.0.1",
"sass-embedded": "^1.98.0",
"tsc-alias": "^1.8.16",
"typescript": "5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "7.3.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "3.2.6"
},
"workspaces": [
"integration/**",
"docs"
],
"keywords": [
"duplojs",
"form",
"vue",
"vue-form",
"typed-form",
"type-safe",
"form-builder",
"typescript",
"step-form"
]
}