-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.35 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.35 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@devtranslate/ui",
"version": "0.0.1",
"description": "Devtranslate UI Components",
"private": false,
"author": "Larissa Mourullo <larismourullo@gmail.com>",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=22.20.0",
"npm": ">=10.9.3"
},
"keywords": [
"react",
"ui",
"react-components",
"accessible",
"components",
"emotion",
"library",
"design-system"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devtranslate/ui.git",
"directory": "."
},
"homepage": "https://github.com/devtranslate/ui#readme",
"bugs": {
"url": "https://github.com/devtranslate/ui/issues"
},
"scripts": {
"prepare": "husky",
"build": "rollup -c",
"lint:code": "tsc --noEmit && eslint . && prettier --check .",
"lint:fix": "tsc --noEmit && eslint --fix . && prettier --write .",
"storybook": "storybook dev -p 4000",
"build-storybook": "storybook build",
"svg:list": "node scripts/generateSvgList",
"svg:store": "node scripts/generateSvgStore",
"svg:generate": "npm run svg:list && npm run svg:store"
},
"peerDependencies": {
"@emotion/react": ">=11.14.0",
"@emotion/styled": ">=11.14.1",
"react": ">=19.2.0",
"react-dom": ">=19.2.0"
},
"devDependencies": {
"@commitlint/cli": "20.3.0",
"@commitlint/config-conventional": "20.3.0",
"@emotion/babel-plugin": "11.13.5",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.3.0",
"@storybook/addon-a11y": "10.1.11",
"@storybook/addon-docs": "10.1.11",
"@storybook/addon-webpack5-compiler-swc": "4.0.2",
"@storybook/react-webpack5": "10.1.11",
"@types/react": "19.2.7",
"@typescript-eslint/eslint-plugin": "8.51.0",
"@typescript-eslint/parser": "8.51.0",
"commitizen": "4.3.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "10.1.11",
"eslint-plugin-unused-imports": "4.3.0",
"git-cz": "4.9.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"rollup": "4.54.0",
"rollup-plugin-dts": "6.3.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"storybook": "10.1.11",
"svgstore": "3.0.1",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
".{ts,tsx}": "eslint --fix",
".{ts,tsx,css}": "prettier --write"
},
"pre-commit": [
"npm prettier-format",
"npm lint"
],
"overrides": {
"tmp": "0.2.4"
}
}