-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.24 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": "vue-typed-form",
"version": "0.3.1",
"description": "Vue final-form typed integration focused on API typings",
"keywords": [
"vue",
"final-form",
"form",
"frontend"
],
"homepage": "https://github.com/CaioOliveira793/vue-typed-form",
"repository": {
"type": "git",
"url": "git+https://github.com/CaioOliveira793/vue-typed-form.git"
},
"bugs": {
"url": "https://github.com/CaioOliveira793/vue-typed-form/issues"
},
"author": "Caio Oliveira <caio.vsoliveira23@gmail.com>",
"license": "MIT",
"type": "module",
"source": "src/lib.ts",
"main": "dist/lib-cjs.js",
"module": "dist/lib-es.js",
"types": "dist/lib-type.d.ts",
"files": [
"dist/*"
],
"scripts": {
"check:type": "vue-tsc --noEmit",
"check:lint": "eslint . --ext vue,ts,js --ignore-path .gitignore",
"check": "run-z check:type,check:lint",
"build:js": "rollup --config rollup.config.js",
"build:type": "dts-bundle-generator --out-file dist/lib-type.d.ts src/lib.ts",
"build:docs": "jsdoc2md dist/lib-es.js > DOCUMENTATION.md",
"build": "run-z build:js,build:type",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"clear:build": "rm -rf dist/*",
"clear:cache": "rm -rf .rollup.cache/*",
"clear:coverage": "rm -rf coverage/*",
"clear": "rm -rf dist/* .rollup.cache/* coverage/*"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vitest/coverage-c8": "^0.29.2",
"@vue/compiler-sfc": "^3.3.4",
"@vue/test-utils": "^2.3.1",
"dts-bundle-generator": "^7.2.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.17.0",
"final-form": "^4.20.9",
"happy-dom": "^8.9.0",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "^2.8.4",
"rollup": "^3.17.2",
"run-z": "^1.11.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8"
},
"peerDependencies": {
"final-form": "^4.20.9",
"vue": "^3.2.47"
}
}