[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-vitest. An vitest environment with support for testing code that needs a Nuxt runtime environment
nuxt nuxt-module testing unit-testing vitest
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: add package meta

Daniel Roe (Dec 19, 2022, 1:59 PM UTC) 8b66140e cda1abfe

+15 -1
+15 -1
package.json
··· 1 1 { 2 2 "name": "vitest-environment-nuxt", 3 + "version": "0.0.1", 4 + "description": "An in-development vitest environment with support for testing code that needs a Nuxt runtime environment.", 5 + "repository": "danielroe/vitest-environment-nuxt", 6 + "keywords": [ 7 + "nuxt", 8 + "vitest", 9 + "vitest-environment" 10 + ], 11 + "author": { 12 + "name": "Daniel Roe <daniel@roe.dev>", 13 + "url": "https://github.com/danielroe" 14 + }, 15 + "license": "MIT", 3 16 "scripts": { 4 17 "build": "unbuild", 5 18 "dev:prepare": "unbuild --stub", ··· 40 53 "peerDependencies": { 41 54 "nuxt": "3.0.0", 42 55 "vitest": "^0.24.5" 43 - } 56 + }, 57 + "packageManager": "pnpm@7.18.0" 44 58 }