@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/package.json CHANGED
@@ -1,93 +1,111 @@
1
- {
2
- "name": "@oiij/naive-ui",
3
- "type": "module",
4
- "version": "0.0.1",
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
- "@oiij,naive-ui",
16
- "naive-ui extra"
17
- ],
18
- "sideEffects": false,
19
- "exports": {
20
- ".": {
21
- "types": "./dist/index.d.ts",
22
- "import": "./dist/index.js",
23
- "require": "./dist/index.cjs"
24
- }
25
- },
26
- "main": "./dist/index.js",
27
- "module": "./dist/index.js",
28
- "types": "./dist/index.d.ts",
29
- "files": [
30
- "LICENSE",
31
- "README.md",
32
- "dist",
33
- "package.json"
34
- ],
35
- "scripts": {
36
- "dev": "tsup --watch",
37
- "dev:unbuild": "unbuild --stub",
38
- "build": "tsc --noEmit && tsup",
39
- "build:unbuild": "tsc --noEmit && unbuild",
40
- "lint": "eslint .",
41
- "lint:fix": "eslint . --fix",
42
- "prepublishOnly": "pnpm build",
43
- "release": "bumpp -r && npm publish --access public",
44
- "awe": "pnpx are-we-esm",
45
- "nmi": "pnpx node-modules-inspector",
46
- "start": "esno src/index.ts",
47
- "test": "vitest",
48
- "update:deps": "taze -w && pnpm i",
49
- "type:check": "tsc --noEmit",
50
- "cz": "czg",
51
- "commit": "git pull && git add -A && pnpm cz && git push",
52
- "link": "pnpm link --global",
53
- "preinstall": "npx only-allow pnpm"
54
- },
55
- "dependencies": {
56
- "async-validator": "^4.2.5",
57
- "colord": "^2.9.3",
58
- "mixte": "3.0.0-beta.3"
59
- },
60
- "devDependencies": {
61
- "@antfu/eslint-config": "^4.2.0",
62
- "@oiij/tsconfig": "^0.0.1",
63
- "@types/node": "^22.13.1",
64
- "@vitest/ui": "^3.0.5",
65
- "bumpp": "^10.0.3",
66
- "commitlint": "^19.7.1",
67
- "cz-git": "^1.11.0",
68
- "czg": "^1.11.0",
69
- "eslint": "^9.20.1",
70
- "eslint-plugin-format": "^1.0.1",
71
- "esno": "^4.8.0",
72
- "lint-staged": "^15.4.3",
73
- "naive-ui": "^2.40.3",
74
- "simple-git-hooks": "^2.11.1",
75
- "taze": "^18.5.0",
76
- "tsup": "8.3.6",
77
- "typescript": "^5.7.3",
78
- "unbuild": "^3.3.1",
79
- "vitest": "^3.0.5",
80
- "vue": "^3.5.13"
81
- },
82
- "simple-git-hooks": {
83
- "pre-commit": "pnpm lint-staged && pnpm type:check"
84
- },
85
- "lint-staged": {
86
- "*.{js,jsx,ts,tsx}": [
87
- "pnpm lint:fix"
88
- ]
89
- },
90
- "publishConfig": {
91
- "access": "public"
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
+ }