-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.84 KB
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
71
72
73
{
"name": "@t3headless/nuxt-typo3",
"version": "2.3.1",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs"
}
},
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"types": "./dist/types.d.mts",
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"test": "vitest run",
"lint": "eslint --ext .ts,.js,.vue .",
"prerelease": "pnpm test && npx standard-version --prerelease alpha && git push --follow-tags && npm publish --tag alpha",
"release": "pnpm test && npx standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint --verbose",
"prepare": "husky"
},
"dependencies": {
"defu": "6.1.4",
"ofetch": "1.0.1",
"ohash": "^2.0.11",
"scule": "1.3.0",
"typescript": "5.8.3",
"ufo": "1.5.4"
},
"devDependencies": {
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@nuxt/kit": "4.0.3",
"@nuxt/module-builder": "1.0.1",
"@nuxt/schema": "4.0.3",
"@nuxt/test-utils": "latest",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@types/semver": "^7.7.0",
"eslint": "8.48.0",
"h3": "^1.15.4",
"husky": "9.1.7",
"listhen": "^1.9.0",
"nuxt": "4.0.3",
"playwright": "1.28.1",
"standard-version": "9.5.0",
"unbuild": "^3.5.0",
"vitest": "latest",
"vue-tsc": "2.2.10"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=18.20.5",
"pnpm": ">=9.14.4"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.14.4"
}
}