-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.52 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.52 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
{
"name": "@skillbill/reactlace",
"version": "1.0.2",
"private": false,
"author": "skillbill",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Skillbill/reactlace.git"
},
"bugs": {
"url": "https://github.com/Skillbill/reactlace/issues"
},
"homepage": "https://skillbill.github.io/reactlace/",
"files": [
"dist/**"
],
"keywords": [
"components",
"shoelace",
"ui library",
"react library",
"primereact"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/reactlace.umd.cjs",
"module": "./dist/reactlace.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/reactlace.js"
},
"require": "./dist/reactlace.umd.cjs"
},
"./styles/reactlace.css": {
"import": "./dist/styles/index.css",
"require": "./dist/styles/index.css"
},
"./styles/theme_primereact.css": {
"import": "./dist/styles/theme.css",
"require": "./dist/styles/theme.css"
}
},
"scripts": {
"dev": "vite --config vite.config.ts",
"build": "tsc --project tsconfig.json --noEmit && vite build --config vite.config.ts",
"preview": "vite preview --config vite.config.ts",
"type-check": "tsc --project tsconfig.json --noEmit",
"lint": "eslint ./src --ext .tsx,.ts --fix",
"storybook": "storybook dev -p 6007 -c .storybook",
"build-storybook": "storybook build -c .storybook -o docs",
"build-publish": "vite build --config vite.config.ts && npm publish --access public"
},
"peerDependencies": {
"@mdi/svg": "^7.4.47",
"@shoelace-style/shoelace": "^2.17.1",
"primereact": "^10.9.7",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.1.11",
"@storybook/react": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@types/node": "^18.19.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^10.1.11",
"postcss": "^8.4.33",
"storybook": "^10.1.11",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.0",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.1"
}
}