attaform 0.14.0-rc.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -9
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Attaform
1
+ # 🙌🏽 Attaform
2
2
 
3
3
  [![npm version][npm-version-src]][npm-version-href]
4
4
  [![npm downloads][npm-downloads-src]][npm-downloads-href]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attaform",
3
- "version": "0.14.0-rc.0",
3
+ "version": "0.14.0",
4
4
  "main": "./dist/index.mjs",
5
5
  "types": "./dist/index.d.mts",
6
6
  "files": [
@@ -21,6 +21,7 @@
21
21
  "type": "git",
22
22
  "url": "https://github.com/attaform/attaform"
23
23
  },
24
+ "homepage": "https://attaform.com",
24
25
  "description": "A fully type-safe, schema-driven form library for Vue 3 that gives you superpowers.",
25
26
  "author": "Oswald Chisala",
26
27
  "bugs": {
@@ -80,15 +81,15 @@
80
81
  "type": "module",
81
82
  "lint-staged": {
82
83
  "./src/**/*.{ts,vue}": "eslint",
83
- "./playground/**/*.{ts,vue}": "eslint",
84
- "./test/**/*.{ts,vue}": "eslint"
84
+ "./apps/site/**/*.{ts,vue}": "eslint",
85
+ "./test/**/*.{ts,vue}": "eslint",
86
+ "**/*.{ts,js,vue,css,scss,md,json,yml,yaml}": "prettier --write"
85
87
  },
86
88
  "devDependencies": {
87
89
  "@commitlint/cli": "^20.5.0",
88
90
  "@commitlint/config-conventional": "^20.5.0",
89
91
  "@eslint/js": "^10.0.1",
90
92
  "@fast-check/vitest": "^0.4.0",
91
- "@nuxt/devtools": "4.0.0-alpha.4",
92
93
  "@nuxt/eslint-config": "^1.15.2",
93
94
  "@nuxt/kit": "^4.4.2",
94
95
  "@nuxt/module-builder": "^1.0.2",
@@ -129,7 +130,7 @@
129
130
  "typescript-eslint": "^8.59.0",
130
131
  "unbuild": "^3.6.1",
131
132
  "vite": "^8.0.10",
132
- "vite-plugin-dts": "^4.5.4",
133
+ "vite-plugin-dts": "^5.0.0",
133
134
  "vitest": "^4.1.5",
134
135
  "vue": "^3.5.33",
135
136
  "vue-eslint-parser": "^10.4.0",
@@ -161,9 +162,10 @@
161
162
  }
162
163
  },
163
164
  "scripts": {
164
- "dev": "nuxi dev playground",
165
- "dev:build": "nuxi build playground",
166
- "dev:prepare": "unbuild --stub && nuxi prepare playground",
165
+ "dev": "pnpm dev:prepare && pnpm --filter attaform-site dev",
166
+ "dev:prepare": "unbuild --stub && nuxi prepare apps/site",
167
+ "dev:site": "pnpm --filter attaform-site dev",
168
+ "build:site": "pnpm --filter attaform-site build",
167
169
  "lint": "eslint --ext .ts,.js,.vue . && pnpm format:check",
168
170
  "lint:fix": "eslint --ext .ts,.js,.vue . --fix && pnpm format",
169
171
  "format": "prettier --write '**/*.{ts,js,vue,css,scss,md,json,yml,yaml}'",
@@ -174,7 +176,7 @@
174
176
  "prepack:watch": "chokidar 'src/**/*' -c 'pnpm prepack' --initial",
175
177
  "release": "pnpm check && pnpm version patch && pnpm prepack && pnpm publish && git push --follow-tags",
176
178
  "test": "vitest run",
177
- "test:types": "pnpm dev:prepare && vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
179
+ "test:types": "pnpm dev:prepare && vue-tsc --noEmit && cd apps/site && vue-tsc --noEmit",
178
180
  "test:watch": "vitest watch",
179
181
  "bench": "vitest bench --run",
180
182
  "check:size": "pnpm prepack && size-limit",