forked from nuxt-modules/google-adsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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/google-adsense",
"version": "2.1.0",
"description": "Google AdSense Module for Nuxt.js",
"license": "MIT",
"repository": "https://github.com/nuxt-community/adsense-module",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxt dev playground",
"dev:nuxt2": "cd nuxt2-playground && yarn dev",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"test": "yarn vitest run",
"release": "standard-version"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.12"
},
"devDependencies": {
"@nuxt/module-builder": "^0.2.0",
"@nuxt/schema": "^3.0.0-rc.12",
"@nuxt/test-utils": "^3.0.0-rc.12",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"eslint": "^8.26.0",
"nuxt": "^3.0.0-rc.12",
"standard-version": "^9.5.0",
"vitest": "^0.24.3"
},
"resolutions": {
"@nuxtjs/google-adsense": "link:./"
}
}