-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.04 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
{
"name": "@creatiwity/nuxt-schema",
"version": "0.4.3",
"description": "Nuxt Schema describe and check API",
"repository": "creatiwity/nuxt-schema",
"license": "MIT",
"type": "module",
"private": false,
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release:patch": "npm run lint && npm run test && npm run prepack && changelogen --release --patch && npm publish --access=public && git push --follow-tags",
"release:minor": "npm run lint && npm run test && npm run prepack && changelogen --release --minor && npm publish --access=public && git push --follow-tags",
"release:major": "npm run lint && npm run test && npm run prepack && changelogen --release --major && npm publish --access=public && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@nuxt/kit": "^4.3.1",
"oxc-transform": "^0.116.0"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.2",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@standard-schema/spec": "^1.1.0",
"@tanstack/vue-query": "^5.92.9",
"@types/node": "latest",
"changelogen": "^0.6.2",
"eslint": "^9.39.3",
"nuxt": "^4.3.1",
"oas-types": "^1.0.7",
"tinyglobby": "^0.2.15",
"typescript": "~5.9.3",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.5",
"zod": "^4.3.6"
}
}