-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
121 lines (121 loc) · 3.61 KB
/
package.json
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
{
"name": "@globalbrain/sefirot",
"type": "module",
"version": "4.6.0",
"packageManager": "pnpm@9.12.1",
"description": "Vue Components for Global Brain Design System.",
"author": "Kia Ishii <ka.ishii@globalbrains.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:globalbrain/sefirot.git"
},
"bugs": {
"url": "https://github.com/globalbrain/sefirot/issues"
},
"keywords": [
"sefirot",
"vue",
"vue component"
],
"files": [
"lib",
"config",
"client.d.ts"
],
"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 .",
"vitest": "vitest",
"vitest:run": "vitest run",
"coverage": "vitest run --coverage",
"test": "pnpm run type && pnpm run lint && pnpm run coverage",
"test:fail": "pnpm run type && pnpm run lint:fail && pnpm run coverage",
"release": "release-it"
},
"peerDependencies": {
"@iconify-json/ph": "^1.2.0",
"@iconify-json/ri": "^1.2.0",
"@types/body-scroll-lock": "^3.1.2",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@vue/reactivity": "^3.5.11",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.1.0",
"body-scroll-lock": "4.0.0-beta.0",
"dayjs": "^1.11.13",
"fuse.js": "^7.0.0",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"normalize.css": "^8.0.1",
"pinia": "^2.2.4",
"postcss": "^8.4.47",
"postcss-nested": "^6.2.0",
"v-calendar": "3.0.1",
"vue": "^3.5.11",
"vue-router": "^4.4.5"
},
"dependencies": {
"@sentry/browser": "^8.33.1",
"@tanstack/vue-virtual": "3.0.0-beta.62",
"@tinyhttp/content-disposition": "^2.2.2",
"@tinyhttp/cookie": "^2.1.1",
"@types/file-saver": "^2.0.7",
"@types/qs": "^6.9.16",
"file-saver": "^2.0.5",
"magic-string": "^0.30.11",
"ofetch": "^1.4.0",
"qs": "^6.13.0",
"unplugin-icons": "^0.19.3"
},
"devDependencies": {
"@globalbrain/eslint-config": "^1.7.1",
"@histoire/plugin-vue": "0.16.5",
"@iconify-json/ph": "^1.2.0",
"@iconify-json/ri": "^1.2.0",
"@release-it/conventional-changelog": "^8.0.2",
"@types/body-scroll-lock": "^3.1.2",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.7.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.2",
"@vue/reactivity": "^3.5.11",
"@vue/test-utils": "^2.4.6",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.1.0",
"body-scroll-lock": "4.0.0-beta.0",
"dayjs": "^1.11.13",
"eslint": "8.57.0",
"fuse.js": "^7.0.0",
"happy-dom": "^14.12.3",
"histoire": "0.16.5",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"normalize.css": "^8.0.1",
"pinia": "^2.2.4",
"postcss": "^8.4.47",
"postcss-nested": "^6.2.0",
"punycode": "^2.3.1",
"release-it": "^17.7.0",
"typescript": "~5.6.2",
"v-calendar": "3.0.1",
"vite": "^5.4.8",
"vitepress": "^1.4.0",
"vitest": "^2.1.2",
"vue": "^3.5.11",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.6"
}
}