-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·119 lines (119 loc) · 3.75 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@nilfoundation/ui-kit",
"version": "2.5.22",
"description": "=Nil; Foundation user interface kit",
"keywords": [
"ui-kit",
"react"
],
"main": "dist/ui-kit.js",
"module": "dist/ui-kit.mjs",
"unpkg": "dist/ui-kit.iife.js",
"types": "dist/ui-kit.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"bundle-types": "api-extractor run",
"build:standalone": "vite build --mode standalone",
"postbuild": "npm run bundle-types && rm -rf ./dist/.temp",
"preview": "vite preview",
"prettier": "prettier --write 'src/**/**/*.{js,ts,tsx,mdx}'",
"prettier:check": "prettier --check 'src/**/**/*.{js,ts,tsx,mdx}'",
"lint": "eslint --ext .js,.ts,.tsx,.mdx src/",
"tsc": "tsc --noEmit",
"storybook": "storybook dev -s ./src/assets -p 6006 --no-open",
"build-storybook": "storybook build",
"test": "jest"
},
"license": "MIT",
"peerDependencies": {
"@codemirror/state": "6.4.0",
"@codemirror/view": ">=6.4.0 < 7",
"@lezer/highlight": "1.2.0",
"@uiw/codemirror-themes": ">=4.21.0 < 5",
"@uiw/react-codemirror": ">=4.21.0 < 5",
"baseui": ">=13.0.0 < 14",
"lightweight-charts": ">=4.0.0 < 5",
"react": ">=18 < 19",
"react-dom": ">=18 < 19",
"styletron-react": ">=6.1.0 < 7",
"ts-xor": ">=1.1.0 < 2"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@microsoft/api-extractor": "^7.34.9",
"@rollup/plugin-replace": "^5.0.5",
"@size-limit/preset-big-lib": "^9.0.0",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-designs": "^7.0.5",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-mdx-gfm": "^7.5.3",
"@storybook/manager-api": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.5.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.1.7",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-react": "^4.0.0",
"babel-loader": "^8.3.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jsdom-testing-mocks": "^1.11.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"size-limit": "^9.0.0",
"storybook": "^7.5.3",
"styletron-engine-atomic": "^1.5.0",
"ts-jest": "^29.1.2",
"typescript": "4.9.5",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.6.0"
},
"repository": "https://github.com/NilFoundation/ui-kit",
"homepage": "https://github.com/NilFoundation/ui-kit#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"copy-to-clipboard": "^3.3.3",
"inline-style-expand-shorthand": "^1.6.0",
"styletron-standard": "^3.1.0",
"ts-essentials": "^10.0.1"
},
"pre-commit": [
"tsc",
"lint"
],
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"@codemirror/state": "$@codemirror/state"
}
}