-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "nuxt-runtime-compiler",
"version": "1.3.0",
"description": "A simple module enabling the vue full bundle on Nuxt 2 and 3",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./src/module.ts",
"require": "./src/module.ts"
}
},
"main": "./src/module.ts",
"files": [
"src"
],
"homepage": "https://github.com/huang-julien/nuxt-runtime-compiler",
"repository": {
"type": "git",
"url": "https://github.com/huang-julien/nuxt-runtime-compiler"
},
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"test": "yarn nuxi prepare ./test/fixtures/basic && vitest --dir test",
"test:dev": "npx cross-env NUXT_TEST_DEV=true yarn test",
"test:webpack": "npx cross-env BUILDER=webpack vitest --dir test",
"test:external-vue-disabled": "npx cross-env FIXTURE=external-vue-disabled yarn test",
"test:external-vue-disabled:dev": "npx cross-env NUXT_TEST_DEV=true FIXTURE=external-vue-disabled yarn test",
"test:external-vue-disabled:webpack": "npx cross-env BUILDER=webpack FIXTURE=external-vue-disabled yarn test",
"lint": "eslint --ext .vue,.js,.ts ./"
},
"dependencies": {
"@nuxt/kit": "^3.1.2",
"pathe": "^0.3.2",
"semver": "^7.5.0"
},
"devDependencies": {
"@nuxt/test-utils": "^3.1.2",
"@nuxt/webpack-builder": "^3.1.2",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"nuxt": "^3.1.2",
"playwright": "^1.29.1",
"vitest": "^0.26.3"
},
"keywords": [
"nuxt",
"nuxt runtime compiler",
"nuxtjs",
"ssr",
"vue"
]
}