-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.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
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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@globalbrain/sefirot",
"version": "4.64.0",
"description": "Vue Components for Global Brain Design System.",
"keywords": [
"components",
"design-system",
"globalbrain",
"ui-library",
"vue",
"vue3"
],
"homepage": "https://sefirot.globalbrains.com/",
"license": "MIT",
"author": "Kia Ishii <ka.ishii@globalbrains.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/globalbrain/sefirot.git"
},
"files": [
"lib",
"config",
"client.d.ts",
"shared.d.ts"
],
"type": "module",
"exports": {
"./client": "./client.d.ts",
"./shared": "./shared.d.ts",
"./config/nuxt": "./config/nuxt.js",
"./config/vite": "./config/vite.js",
"./dompurify": {
"types": "./lib/dompurify/index.d.ts",
"browser": "./lib/dompurify/browser.js",
"default": "./lib/dompurify/node.js"
},
"./*": "./*"
},
"scripts": {
"docs": "pnpm docs:dev",
"docs:dev": "vitepress dev docs --port 4011",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress serve docs --port 4011",
"story": "pnpm story:dev",
"story:dev": "NODE_NO_WARNINGS=1 VITE_CJS_IGNORE_WARNING=1 histoire dev --port 4010",
"story:build": "NODE_NO_WARNINGS=1 VITE_CJS_IGNORE_WARNING=1 histoire build",
"story:preview": "NODE_NO_WARNINGS=1 VITE_CJS_IGNORE_WARNING=1 histoire preview --port 4010",
"type": "vue-tsc --noEmit",
"lint": "eslint --fix",
"lint:fail": "eslint --max-warnings 0",
"test": "vitest",
"test:fail": "vitest run",
"test:coverage": "vitest run --coverage",
"check": "pnpm run --aggregate-output '/^(type|lint|test:fail)$/'",
"check:fail": "pnpm run --aggregate-output '/^(type|lint:fail|test:fail)$/'",
"release": "npm whoami >/dev/null 2>&1 || npm login && release-it"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.116",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/ri": "^1.2.10",
"@popperjs/core": "^2.11.8",
"@sentry/browser": "^10.63.0",
"@sentry/vue": "^10.63.0",
"@tanstack/vue-virtual": "3.0.0-beta.62",
"@tinyhttp/content-disposition": "^2.2.4",
"@tinyhttp/cookie": "^2.1.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/body-scroll-lock": "^3.1.2",
"@types/d3": "^7.4.3",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@types/qs": "^6.15.1",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/reactivity": "^3.5.39",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^14.3.0",
"body-scroll-lock": "4.0.0-beta.0",
"d3": "^7.9.0",
"dayjs": "^1.11.21",
"dompurify": "^3.4.11",
"fuse.js": "^7.4.2",
"html2canvas": "^1.4.1",
"jsdom": "^29.1.1",
"lodash-es": "^4.18.1",
"magic-string": "^0.30.21",
"markdown-it": "^14.3.0",
"normalize.css": "^8.0.1",
"ofetch": "^1.5.1",
"pinia": "^3.0.4",
"postcss": "^8.5.16",
"postcss-nested": "^7.0.2",
"punycode": "^2.3.1",
"qs": "^6.15.3",
"unplugin-icons": "^23.0.1",
"v-calendar": "3.0.1",
"vite": "^7.3.6",
"vue": "^3.5.39",
"vue-draggable-plus": "^0.6.1",
"vue-router": "^5.1.0"
},
"devDependencies": {
"@globalbrain/eslint-config": "^3.1.0",
"@histoire/plugin-vue": "1.0.0-beta.1",
"@release-it/conventional-changelog": "^11.0.1",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.1.0",
"@typescript-eslint/rule-tester": "^8.62.1",
"@vitest/coverage-v8": "^4.1.9",
"@vue/test-utils": "^2.4.11",
"eslint": "^9.39.4",
"happy-dom": "^20.10.6",
"histoire": "1.0.0-beta.1",
"release-it": "^20.2.1",
"typescript": "~6.0.3",
"vitepress": "^2.0.0-alpha.17",
"vitest": "^4.1.9",
"vue-tsc": "^3.3.6"
},
"packageManager": "pnpm@11.9.0"
}