-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.72 KB
/
package.json
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
{
"name": "wonder-engine",
"version": "0.0.37",
"private": false,
"description": "Engine for ui kits and design systems",
"repository": "https://github.com/OleksiiKachan/wonder-engine",
"license": "MIT",
"author": "Oleksii Kachan",
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/wonder-engine.cjs.js",
"module": "./dist/wonder-engine.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/wonder-engine.es.js",
"require": "./dist/wonder-engine.cjs.js"
},
"./styles": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"analyze:bundle": "BUNDLE_ANALYZE=1 webpack",
"build": "yarn build:js && yarn build:types",
"build:js": "vite build",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"build:storybook": "build-storybook",
"lint": "eslint",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"test": "cross-env NODE_ENV=test jest"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".commitizen.json"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@storybook/addon-actions": "^8.5.0",
"@storybook/addon-docs": "^8.5.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/react": "^8.5.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"commitlint": "^19.6.1",
"cross-env": "^7.0.3",
"cz-customizable": "^7.4.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.0.0",
"styled-components": "^6.1.14",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"webpack": "^5.97.1"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"styled-components": ">=6"
},
"engines": {
"node": "^20 || ^22 || ^24"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}