This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "nuxt-vite",
"version": "0.3.5",
"description": "Vite Experience with Nuxt 2",
"repository": "nuxt/vite",
"license": "MIT",
"exports": {
".": "./dist/nuxt-vite.cjs",
"./dist/runtime/*": "./dist/runtime/*"
},
"main": "./dist/nuxt-vite.cjs",
"types": "./dist/nuxt-vite.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"dev": "yarn fixture:dev",
"fixture:build": "nuxt build test/fixture",
"fixture:dev": "nuxt dev test/fixture",
"fixture:generate": "nuxt generate test/fixture",
"fixture:start": "nuxt start test/fixture",
"lint": "eslint --ext .ts .",
"prepublishOnly": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "mocha -b -r jiti/register ./test/*.test.*"
},
"dependencies": {
"@vitejs/plugin-legacy": "^1.6.0",
"consola": "^2.15.3",
"defu": "^5.0.0",
"fs-extra": "^10.0.0",
"pathe": "^0.2.0",
"postcss-import": "^14.0.2",
"postcss-import-resolver": "^2.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.3",
"semver": "^7.3.5",
"ufo": "^0.7.9",
"vite": "^2.5.7",
"vite-plugin-vue2": "^1.8.2"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxtjs/composition-api": "^0.29.2",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mkdist": "^0.3.3",
"mocha": "^9.1.2",
"nuxt": "^2.15.8",
"ohmyfetch": "^0.3.1",
"playwright": "^1.15.1",
"sass": "^1.42.1",
"siroc": "^0.16.0",
"standard-version": "^9.3.1"
}
}