-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@t3headless/nuxt-typo3",
"version": "2.0.8",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"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",
"scule": "1.3.0",
"typescript": "5.7.2",
"ufo": "1.5.4"
},
"devDependencies": {
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@nuxt/kit": "3.14.1592",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "latest",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"eslint": "8.29.0",
"husky": "9.1.7",
"nuxt": "3.14.1592",
"playwright": "1.28.1",
"standard-version": "9.5.0",
"vitest": "latest",
"vue-tsc": "2.1.10"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=18.20.5",
"pnpm": ">=9.14.4"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.14.4"
}
}