Files
form/packages/vue-form/package.json
Tanner Linsley 0c88ee82f1 release: v0.9.0
2023-11-05 14:29:49 +00:00

79 lines
1.9 KiB
JSON

{
"name": "@tanstack/vue-form",
"version": "0.9.0",
"description": "Powerful, type-safe forms for Vue.",
"author": "tannerlinsley",
"license": "MIT",
"repository": "tanstack/form",
"homepage": "https://tanstack.com/form",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"types": "build/legacy/index.d.ts",
"main": "build/legacy/index.cjs",
"module": "build/legacy/index.js",
"exports": {
".": {
"import": {
"types": "./build/modern/index.d.ts",
"default": "./build/modern/index.js"
},
"require": {
"types": "./build/modern/index.d.cts",
"default": "./build/modern/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"clean": "rimraf ./build && rimraf ./coverage",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"test:types": "tsc",
"fixme:test:lib": "pnpm run test:2 && pnpm run test:2.7 && pnpm run test:3",
"test:lib": "pnpm run test:3",
"test:2": "vue-demi-switch 2 vue2 && vitest",
"test:2.7": "vue-demi-switch 2.7 vue2.7 && vitest",
"test:3": "vue-demi-switch 3 && vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "tsup"
},
"nx": {
"targets": {
"test:build": {
"dependsOn": [
"build"
]
}
}
},
"files": [
"build",
"src"
],
"dependencies": {
"@tanstack/form-core": "workspace:*",
"@tanstack/store": "0.1.3",
"@tanstack/vue-store": "0.1.3",
"vue-demi": "^0.14.6"
},
"devDependencies": {
"@vue/composition-api": "1.7.2",
"vue": "^3.3.4",
"vue2": "npm:vue@2.6",
"vue2.7": "npm:vue@2.7"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.2",
"vue": "^2.5.0 || ^3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}