-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.99 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
{
"name": "@extedcoud/smart-components",
"version": "0.0.1",
"description": "React UI component library",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./adapters/openai": {
"types": "./dist/openai.d.ts",
"import": "./dist/adapters/openai.js",
"require": "./dist/adapters/openai.cjs"
},
"./adapters/proxy": {
"types": "./dist/proxy.d.ts",
"import": "./dist/adapters/proxy.js",
"require": "./dist/adapters/proxy.cjs"
},
"./adapters/anthropic": {
"types": "./dist/anthropic.d.ts",
"import": "./dist/adapters/anthropic.js",
"require": "./dist/adapters/anthropic.cjs"
},
"./adapters/mock": {
"types": "./dist/mock.d.ts",
"import": "./dist/adapters/mock.js",
"require": "./dist/adapters/mock.cjs"
},
"./style.css": "./dist/style.css"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "vite build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "pnpm build",
"release:dry": "pnpm build && npm publish --dry-run",
"preversion": "pnpm lint && pnpm typecheck && pnpm test:run",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@eslint/js": "^9",
"@microsoft/api-extractor": "^7.58.7",
"@storybook/react-vite": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/node": "^25.6.2",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"@vitest/ui": "latest",
"eslint": "^9",
"eslint-config-prettier": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-react-refresh": "latest",
"globals": "latest",
"jsdom": "latest",
"prettier": "latest",
"react": "latest",
"react-dom": "latest",
"storybook": "latest",
"typescript": "latest",
"typescript-eslint": "latest",
"vite": "latest",
"vite-plugin-dts": "latest",
"vitest": "latest"
}
}