-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "nuxtjs-drupal-ce",
"version": "2.1.0",
"license": "MIT",
"bin": {
"nuxt-drupal-ce-init": "bin/nuxt-drupal-ce-init.cjs"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"playground/components",
"playground/pages",
"playground/app.vue"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"test": "vitest run",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.3",
"@nuxtjs/i18n": "^8.5.5",
"eslint": "^9.12.0",
"nuxt": "^3.13.2",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
}
}