-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "@t3headless/nuxt-typo3",
"version": "2.0.7",
"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",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && 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 install"
},
"dependencies": {
"@vee-validate/rules": "^4.10.2",
"defu": "^6.1.2",
"ofetch": "^1.0.1",
"scule": "^1.0.0",
"typescript": "^5.2.2",
"ufo": "^1.0.1",
"vee-validate": "^4.10.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@nuxt/kit": "latest",
"@nuxt/module-builder": "latest",
"@nuxt/schema": "latest",
"@nuxt/test-utils": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"eslint": "^8.29.0",
"husky": "^8.0.0",
"nuxt": "^3.14.159",
"playwright": "^1.28.1",
"standard-version": "^9.5.0",
"vitest": "latest"
},
"volta": {
"node": "18.18.2",
"pnpm": "1.22.19"
}
}