-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.73 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.73 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
{
"name": "@ianpaschal/combat-command-components",
"version": "1.11.2",
"description": "A minimal React component library",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/index.css"
},
"./index.css": "./dist/index.css"
},
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"dev": "storybook dev -p 6006 --no-open",
"prebuild": "npm run gen",
"build": "tsc && vite build",
"build-storybook": "storybook build",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:ts": "tsc --noEmit && eslint . --report-unused-disable-directives --max-warnings 0",
"lint:scss": "stylelint '**/*.scss'",
"gen": "npm run gen:theme && npm run gen:scss",
"gen:theme": "tsx scripts/generateThemeVariables.ts",
"gen:scss": "tsx scripts/generateScssTypes.ts",
"release:patch": "npm version patch --no-commit-hooks && npm run build && npm publish",
"release:minor": "npm version minor --no-commit-hooks && npm run build && npm publish",
"release:major": "npm version major --no-commit-hooks && npm run build && npm publish"
},
"devDependencies": {
"@ianpaschal/eslint-config": "^1.0.1",
"@storybook/addon-docs": "^10.2.15",
"@storybook/addon-themes": "^10.3.3",
"@storybook/builder-vite": "^10.2.15",
"@storybook/react-vite": "^10.2.15",
"@stylistic/stylelint-config": "^3.0.1",
"@stylistic/stylelint-plugin": "^4.0.0",
"@types/node": "^24.10.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.24",
"eslint": "^9.0.0",
"pdfjs-dist": "^5.4.296",
"postcss": "^8.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^10.3.0",
"sass": "^1.93.2",
"storybook": "^10.2.15",
"stylelint": "^16.25.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-standard-scss": "^16.0.0",
"tsx": "4.21.0",
"typescript": "^5.2.0",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@fontsource/figtree": "^5.2.10",
"@tanstack/react-store": "^0.8.0",
"@tanstack/store": "^0.8.0",
"clsx": "^2.1.1",
"colorjs.io": "^0.6.1",
"deepmerge": "^4.3.1",
"lucide-react": "^0.548.0",
"pdfjs-dist": "^5.4.0",
"react-pdf": "^10.0.0"
}
}