-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.58 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
123
124
{
"name": "@rhapsodic/histoire-kit",
"version": "1.5.1",
"description": "Composable Histoire configuration, setup, and story helpers for Rhapsodic projects",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/rhapsodic-dev/histoire-kit.git"
},
"contributors": [
{
"name": "Svyatoslav Fyodorov",
"email": "intelrug@gmail.com",
"url": "https://github.com/intelrug"
},
{
"name": "TrenLok",
"email": "arediveev@gmail.com",
"url": "https://github.com/trenlok"
}
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./setup": {
"types": "./dist/setup.d.ts",
"import": "./dist/setup.js"
},
"./config/vue": {
"types": "./dist/config/vue.d.ts",
"import": "./dist/config/vue.js"
},
"./config/nuxt": {
"types": "./dist/config/nuxt.d.ts",
"import": "./dist/config/nuxt.js"
},
"./config/nuxt-layers": {
"types": "./dist/config/nuxt-layers.d.ts",
"import": "./dist/config/nuxt-layers.js"
}
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "vite build",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"format": "pnpm run format:scripts && pnpm run format:styles",
"format:scripts": "eslint . --cache --fix",
"format:styles": "stylelint \"**/*.{css,scss,vue}\" --cache --allow-empty-input --fix",
"hooks:install": "pnpm exec simple-git-hooks",
"lint": "pnpm run lint:scripts && pnpm run lint:styles",
"lint:scripts": "eslint . --cache",
"lint:styles": "stylelint \"**/*.{css,scss,vue}\" --cache --allow-empty-input",
"prepare": "pnpm run hooks:install",
"release": "bumpp",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.4.8",
"@rhapsodic/bem-classnames-vue": "2.1.0"
},
"peerDependencies": {
"@histoire/plugin-nuxt": "^1.0.0-beta.1",
"@histoire/plugin-vue": "^1.0.0-beta.1",
"histoire": "^1.0.0-beta.1",
"vue": "^3.5.26"
},
"peerDependenciesMeta": {
"@histoire/plugin-nuxt": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@histoire/plugin-nuxt": "1.0.0-beta.1",
"@histoire/plugin-vue": "1.0.0-beta.1",
"@rhapsodic/eslint-config": "^1.1.0",
"@rhapsodic/stylelint-config": "^1.0.1",
"@types/node": "^24.0.0",
"@vitejs/plugin-vue": "^6.0.8",
"bumpp": "^11.1.0",
"eslint": "^10.7.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"histoire": "1.0.0-beta.1",
"lint-staged": "^17.0.8",
"sass-embedded": "^1.100.0",
"simple-git-hooks": "^2.13.1",
"stylelint": "^17.14.0",
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vite-plugin-dts": "^5.0.3",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^4.1.10",
"vue": "^3.5.39"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=24.17.0",
"pnpm": ">=11"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit",
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix",
"*.{css,scss,vue}": "stylelint --allow-empty-input --cache --fix"
},
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620"
}