-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.71 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@nuxtjs/harlem",
"version": "1.3.1",
"license": "MIT",
"description": "Harlem integration for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/harlem.git"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"harlem",
"store"
],
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "bumpp && npm publish && git push --follow-tags",
"test:e2e": "vitest run test/e2e"
},
"dependencies": {
"@harlem/core": "^3.1.8",
"@harlem/plugin-devtools": "^3.1.8",
"@harlem/plugin-ssr": "^3.1.8",
"@nuxt/kit": "^3.12.4",
"knitwork": "^1.1.0",
"scule": "^1.3.0"
},
"devDependencies": {
"@nuxt/eslint-config": "0.7.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "3.14.4",
"@types/serve-static": "1.15.7",
"@vitest/coverage-v8": "2.1.5",
"bumpp": "9.8.1",
"eslint": "9.15.0",
"nuxt": "3.14.1592",
"playwright": "1.49.0",
"prettier": "3.3.3",
"vitest": "2.1.5"
},
"resolutions": {
"@nuxt/schema": "3.14.1592",
"@nuxtjs/harlem": "link:./"
},
"packageManager": "pnpm@9.14.1"
}