-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 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
{
"name": "@krutoo/showcase",
"version": "0.0.0",
"type": "module",
"description": "Build tool agnostic Storybook alternative",
"author": "Dmitry Petrov",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/krutoo/showcase.git"
},
"engines": {
"node": ">=18"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.14.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=11.9.0",
"onFail": "error"
}
},
"scripts": {
"check": "tsc -p . --noEmit",
"lint": "eslint --flag unstable_native_nodejs_ts_config . && prettier . --check && ls-lint",
"fmt": "prettier . --write",
"build": "node scripts/build.ts"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.35.0",
"@ls-lint/ls-lint": "^2.3.1",
"@rspack/cli": "^1.5.5",
"@rspack/core": "^1.5.5",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^22.10.10",
"@types/react": "^18.3.18",
"css-loader": "^7.1.2",
"eslint": "^9.35.0",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.4.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.9.2",
"typescript-eslint": "^8.57.2"
},
"dependencies": {
"chokidar": "^4.0.3",
"classnames": "^2.5.1",
"fast-glob": "^3.3.3",
"shiki": "^3.12.2",
"zod": "^4.1.9"
},
"peerDependencies": {
"@krutoo/utils": "^0.0.36",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"files": [
"dist",
"css",
"README.md"
],
"exports": {
"./core": "./dist/core/index.js",
"./build": "./dist/build/index.js",
"./runtime": "./dist/runtime/index.js",
"./runtime-sandbox": "./dist/runtime-sandbox/index.js",
"./runtime-showcase": "./dist/runtime-showcase/index.js",
"./runtime-showcase/styles.css": "./css/showcase.css",
"./showcase.css": "./css/showcase.css"
},
"sideEffects": [
"*.css"
]
}