-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.61 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.61 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
{
"name": "@feugene/fint-ds",
"description": "Vue 3 design system package with components, styles, directives, and localization helpers.",
"version": "0.1.0",
"license": "UNLICENSED",
"type": "module",
"types": "./dist/types/src/index.d.ts",
"web-types": "./web-types.json",
"repository": {
"type": "git",
"url": "git+https://github.com/efureev/fint-ds.git"
},
"homepage": "https://github.com/efureev/fint-ds#readme",
"bugs": {
"url": "https://github.com/efureev/fint-ds/issues"
},
"keywords": [
"vue",
"vue3",
"design-system",
"component-library",
"unocss",
"ui"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/index.js"
},
"./uno": {
"types": "./dist/types/src/uno.d.ts",
"import": "./dist/uno.js"
},
"./styles.css": "./dist/styles.css",
"./base.css": "./dist/base.css",
"./fonts.css": "./dist/fonts.css"
},
"peerDependencies": {
"vue": "^3.5.32"
},
"dependencies": {
"@headlessui/vue": "^1.7.23"
},
"devDependencies": {
"@antfu/eslint-config": "^8.1.0",
"@feugene/fint-i18n": "^0.1.1",
"@iconify-json/lucide": "^1.2.101",
"@types/node": "^25.5.2",
"@unocss/eslint-plugin": "^66.6.8",
"@unocss/reset": "^66.6.8",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.3",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"jsdom": "^29.0.2",
"typescript": "^6.0.2",
"unocss": "^66.6.8",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.7",
"vitest": "^4.1.3",
"vue": "^3.5.32",
"vue-tsc": "^3.2.6"
},
"scripts": {
"dev": "vite --config playground/vite.config.ts",
"playground": "vite --config playground/vite.config.ts",
"playground:build": "vite build --config playground/vite.config.ts",
"build": "vite build && vue-tsc -p tsconfig.build.json && node ./scripts/check-dist-no-tests.mjs",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"test": "vitest --config vitest.config.ts",
"test:run": "vitest run --config vitest.config.ts",
"test:coverage:package": "vitest run --config vitest.config.ts --coverage --reporter=default --reporter=junit --outputFile.junit=./junit-report.xml",
"test:playground": "vitest --config playground/vitest.config.ts",
"test:run:playground": "vitest run --config playground/vitest.config.ts",
"test:coverage:playground": "vitest run --config playground/vitest.config.ts --coverage"
}
}