-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.05 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
{
"name": "@os-legal/ui",
"version": "0.1.20",
"description": "React component library for OpenContracts design system",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": [
"*.css"
],
"files": [
"dist",
"tokens.css",
"styles.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./tokens.css": "./tokens.css",
"./styles.css": "./styles.css"
},
"scripts": {
"prepare": "npm run build",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest",
"test:coverage": "vitest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@storybook/react": "^10.1.10",
"@storybook/react-vite": "^10.1.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.0.0",
"jsdom": "^28.1.0",
"picomatch": "^4.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^10.1.10",
"tsup": "^8.5.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
},
"keywords": [
"react",
"components",
"design-system",
"ui",
"opencontracts",
"legal",
"typescript"
],
"author": "OpenContracts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Open-Source-Legal/OS-Legal-Style.git"
},
"bugs": {
"url": "https://github.com/Open-Source-Legal/OS-Legal-Style/issues"
},
"homepage": "https://github.com/Open-Source-Legal/OS-Legal-Style#readme"
}