@oiij/naive-ui 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -15
- package/dist/components/config-providers/ConfigProviders.vue.d.ts +36 -0
- package/dist/components/config-providers/index.d.ts +1 -0
- package/dist/components/copy-button/CopyButton.vue.d.ts +31 -0
- package/dist/components/copy-button/index.d.ts +1 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/components/search-input/SearchInput.vue.d.ts +30 -0
- package/dist/components/search-input/index.d.ts +1 -0
- package/dist/components/tooltip-button/TooltipButton.vue.d.ts +29 -0
- package/dist/components/tooltip-button/index.d.ts +1 -0
- package/dist/components.cjs +1 -0
- package/dist/components.d.ts +1 -0
- package/dist/components.js +237 -0
- package/dist/components.umd.cjs +1 -0
- package/dist/index.cjs +165 -156
- package/dist/index.d.cts +45 -172
- package/dist/index.d.ts +45 -172
- package/dist/index.js +149 -143
- package/package.json +111 -93
package/package.json
CHANGED
|
@@ -1,93 +1,111 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@oiij/naive-ui",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "",
|
|
6
|
-
"author": "oiij",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"homepage": "https://github.com/oiij/naive-ui",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git@github.com:oiij/naive-ui.git"
|
|
12
|
-
},
|
|
13
|
-
"bugs": "https://github.com/oiij/naive-ui/issues",
|
|
14
|
-
"keywords": [
|
|
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
|
-
"eslint-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@oiij/naive-ui",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"description": "",
|
|
6
|
+
"author": "oiij",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/oiij/naive-ui",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git@github.com:oiij/naive-ui.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": "https://github.com/oiij/naive-ui/issues",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"naive-ui"
|
|
16
|
+
],
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js",
|
|
22
|
+
"require": "./dist/index.cjs"
|
|
23
|
+
},
|
|
24
|
+
"./components": {
|
|
25
|
+
"types": "./dist/components.d.ts",
|
|
26
|
+
"import": "./dist/components.js",
|
|
27
|
+
"require": "./dist/components.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"main": "./dist/index.js",
|
|
31
|
+
"module": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"files": [
|
|
34
|
+
"LICENSE",
|
|
35
|
+
"README.md",
|
|
36
|
+
"dist",
|
|
37
|
+
"package.json"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"dev": "tsdown --watch",
|
|
41
|
+
"dev:vite": "vite build --watch",
|
|
42
|
+
"build": "vue-tsc --noEmit && tsdown && vite build",
|
|
43
|
+
"docs:dev": "vitepress dev docs",
|
|
44
|
+
"docs:build": "vitepress build docs",
|
|
45
|
+
"docs:preview": "vitepress preview docs",
|
|
46
|
+
"lint": "eslint .",
|
|
47
|
+
"lint:fix": "eslint . --fix",
|
|
48
|
+
"prepublishOnly": "pnpm build",
|
|
49
|
+
"release": "bumpp && npm publish",
|
|
50
|
+
"awe": "pnpx are-we-esm",
|
|
51
|
+
"nmi": "pnpx node-modules-inspector",
|
|
52
|
+
"start": "esno src/index.ts",
|
|
53
|
+
"test": "vitest",
|
|
54
|
+
"update:deps": "taze -w && pnpm i",
|
|
55
|
+
"type:check": "vue-tsc --noEmit",
|
|
56
|
+
"cz": "czg",
|
|
57
|
+
"commit": "git pull && git add -A && pnpm cz && git push",
|
|
58
|
+
"link": "pnpm link --global",
|
|
59
|
+
"preinstall": "npx only-allow pnpm"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"@vueuse/core": "^13.1.0",
|
|
63
|
+
"async-validator": "^4.2.5",
|
|
64
|
+
"colord": "^2.9.3",
|
|
65
|
+
"naive-ui": "^2.41.0",
|
|
66
|
+
"radash": "^12.1.0",
|
|
67
|
+
"vue": "^3.5.13"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@antfu/eslint-config": "^4.13.0",
|
|
71
|
+
"@oiij/tsconfig": "^0.0.1",
|
|
72
|
+
"@types/node": "^22.15.16",
|
|
73
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
74
|
+
"@vitest/ui": "^3.1.3",
|
|
75
|
+
"@vueuse/core": "^13.1.0",
|
|
76
|
+
"async-validator": "^4.2.5",
|
|
77
|
+
"bumpp": "^10.1.0",
|
|
78
|
+
"colord": "^2.9.3",
|
|
79
|
+
"commitlint": "^19.8.1",
|
|
80
|
+
"cz-git": "^1.11.1",
|
|
81
|
+
"czg": "^1.11.1",
|
|
82
|
+
"eslint": "^9.26.0",
|
|
83
|
+
"eslint-plugin-format": "^1.0.1",
|
|
84
|
+
"esno": "^4.8.0",
|
|
85
|
+
"lint-staged": "^15.5.2",
|
|
86
|
+
"naive-ui": "^2.41.0",
|
|
87
|
+
"radash": "^12.1.0",
|
|
88
|
+
"simple-git-hooks": "^2.13.0",
|
|
89
|
+
"taze": "^19.1.0",
|
|
90
|
+
"tsdown": "^0.11.1",
|
|
91
|
+
"typescript": "^5.8.3",
|
|
92
|
+
"vite": "^6.3.5",
|
|
93
|
+
"vite-plugin-dts": "^4.5.3",
|
|
94
|
+
"vitepress": "^1.6.3",
|
|
95
|
+
"vitepress-demo-plugin": "^1.4.1",
|
|
96
|
+
"vitest": "^3.1.3",
|
|
97
|
+
"vue": "^3.5.13",
|
|
98
|
+
"vue-tsc": "^2.2.10"
|
|
99
|
+
},
|
|
100
|
+
"simple-git-hooks": {
|
|
101
|
+
"pre-commit": "pnpm lint-staged && pnpm type:check"
|
|
102
|
+
},
|
|
103
|
+
"lint-staged": {
|
|
104
|
+
"*.{js,jsx,ts,tsx}": [
|
|
105
|
+
"pnpm lint:fix"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"publishConfig": {
|
|
109
|
+
"access": "public"
|
|
110
|
+
}
|
|
111
|
+
}
|