-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 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
{
"name": "@antdv-next/nuxt",
"version": "1.0.4",
"description": "Antdv Next Nuxt module",
"repository": "antdv-next/nuxt",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"workspaces": [
"playground"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"bump": "bumpp"
},
"peerDependencies": {
"@antdv-next/icons": ">=1.0.1",
"antdv-next": ">=1.0.4",
"nuxt": ">=4.0.0"
},
"dependencies": {
"@antdv-next/cssinjs": "catalog:",
"@nuxt/kit": "catalog:",
"vite-plugin-dayjs": "catalog:"
},
"devDependencies": {
"@antdv-next/icons": "catalog:",
"@nuxt/devtools": "catalog:",
"@nuxt/eslint-config": "catalog:",
"@nuxt/module-builder": "catalog:",
"@nuxt/schema": "catalog:",
"@nuxt/test-utils": "catalog:",
"@types/jsdom": "catalog:",
"@types/node": "latest",
"antdv-next": "catalog:",
"bumpp": "catalog:",
"changelogen": "catalog:",
"eslint": "catalog:",
"jsdom": "catalog:",
"nitropack": "catalog:",
"nuxt": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
}
}