-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.75 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
74
75
{
"name": "antdv-style",
"version": "1.0.0-rc.1",
"description": "CSS-in-JS solution for antdv-next",
"keywords": [
"antd",
"antdv-next",
"css-in-js",
"cssinjs",
"design token",
"emotion",
"token-system",
"vue",
"vue3"
],
"homepage": "https://github.com/antdv-next/antdv-style",
"bugs": {
"url": "https://github.com/antdv-next/antdv-style/issues"
},
"license": "MIT",
"author": "darkingtail(darkingtail@gmail.com)",
"repository": {
"type": "git",
"url": "https://github.com/antdv-next/antdv-style.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "vue-tsc --noEmit",
"prepublishOnly": "pnpm run build",
"release": "pnpm run build && npm publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "oxlint --fix"
},
"dependencies": {
"@emotion/css": "^11.13.5"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vue/test-utils": "^2.4.6",
"antdv-next": "^1.1.7",
"happy-dom": "^15.11.7",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.17.4",
"tsdown": "^0.21.5",
"typescript": "^5.9.3",
"unplugin-dts": "1.0.0-beta.6",
"vite": "^8.0.3",
"vitepress": "^2.0.0-alpha.17",
"vitest": "^4.1.1",
"vue": "^3.5.31",
"vue-tsc": "^3.2.6"
},
"peerDependencies": {
"antdv-next": ">=1.0.4",
"vue": ">=3.5.0"
}
}