-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "@hexdigital/nuxt-datocms",
"type": "module",
"version": "1.1.5",
"description": "DatoCMS Nuxt module",
"author": "Jamie Warburton @Jamiewarb",
"license": "MIT",
"homepage": "https://github.com/hex-digital/nuxt-datocms",
"repository": {
"type": "git",
"url": "https://github.com/hex-digital/nuxt-datocms"
},
"bugs": "https://github.com/hex-digital/nuxt-datocms/issues",
"keywords": [
"nuxt",
"datocms",
"module"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release && pnpm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.3.1",
"datocms-listen": "^0.1.14",
"defu": "^6.1.2",
"vue-datocms": "^4.0.2"
},
"devDependencies": {
"@hexdigital/eslint-config": "^1.3.0",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.3.1",
"@nuxt/test-utils": "^3.3.1",
"changelogen": "^0.5.1",
"eslint": "^8.36.0",
"nuxt": "^3.3.1",
"vitest": "^0.29.3"
}
}