-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.37 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.37 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@jiangshengdev/nova-next",
"version": "3.0.0-alpha.7",
"private": false,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"license": "MIT",
"homepage": "https://github.com/jiangshengdev/nova-next#readme",
"bugs": {
"url": "https://github.com/jiangshengdev/nova-next/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiangshengdev/nova-next.git"
},
"author": "Jiang Sheng <jiangshengdev@outlook.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"web-types": "./dist/web-types.json",
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/styles/all.css",
"./styles/*": "./dist/styles/*",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"tag": "alpha"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"play": "vite",
"play:build": "run-p type-check \"play:build-only {@}\" --",
"preview": "vite preview",
"styles:build": "vite build --config vite.styles.config.ts",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"play:build-only": "vite build",
"type-check": "vue-tsc --build",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix --cache",
"lint": "run-s lint:*",
"format": "prettier --write docs/ e2e/ issues/ playground/ scripts/ src/ tests/",
"xo": "xo",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build && pnpm run styles:build && pnpm run gen:web-types",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"gen:meta": "tsx scripts/gen-component-meta.ts",
"gen:web-types": "run-s gen:meta gen:web-types-only",
"gen:web-types-only": "tsx scripts/gen-web-types.ts"
},
"dependencies": {
"@jiangshengdev/material-design-icons-vue-next": "2.0.0-alpha.3",
"vue": "^3.5.22"
},
"devDependencies": {
"@jiangshengdev/nova-next": "3.0.0-alpha.7",
"@playwright/test": "^1.56.1",
"@prettier/plugin-oxc": "^0.0.4",
"@stylistic/eslint-plugin": "^5.6.1",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^27.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.18.11",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/eslint-plugin": "^1.3.23",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"bumpp": "^10.3.1",
"eslint": "^9.37.0",
"eslint-plugin-oxlint": "~1.30.0",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-vue": "~10.5.0",
"globby": "^16.0.0",
"jiti": "^2.6.1",
"jsdom": "^27.0.1",
"lodash-es": "^4.17.21",
"npm-run-all2": "^8.0.4",
"oxlint": "~1.30.0",
"pinia": "^3.0.3",
"prettier": "3.6.2",
"tsdown": "^0.16.6",
"tsx": "^4.20.6",
"typescript": "~5.9.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^8.0.3",
"vitepress": "2.0.0-alpha.15",
"vitest": "^3.2.4",
"vue-component-meta": "^3.1.5",
"vue-router": "^4.6.3",
"vue-tsc": "^3.1.1",
"xo": "^1.2.3"
},
"pnpm": {
"overrides": {
"@eslint/plugin-kit": "^0.4.1"
}
}
}