-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.11 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
{
"name": "@findnlink/neuro-ui",
"version": "1.0.41",
"files": [
"lib"
],
"main": "./lib/neuro-ui.umd.js",
"module": "./lib/neuro-ui.es.js",
"exports": {
".": {
"import": "./lib/neuro-ui.es.js",
"require": "./lib/neuro-ui.umd.js"
},
"./lib/style.css": "./lib/style.css"
},
"types": "./lib/src/index.d.ts",
"private": false,
"description": "Findnlink design system",
"author": "<contact@findnlink.com>",
"license": "MIT",
"homepage": "https://www.findnlink.com",
"keywords": [
"Findnlink",
"React",
"Vite",
"UI",
"UX",
"SCSS",
"Storybook"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Findnlink/Neuro-UI.git"
},
"bugs": {
"url": "https://github.com/Findnlink/Neuro-UI/issues"
},
"scripts": {
"start": "yarn build:vite-plugin-mdx && yarn install && yarn dev",
"dev": "start http://localhost:2000 && vite --port 2000",
"build:types": "tsc src/index.ts --declaration --emitDeclarationOnly --resolveJsonModule --jsx react --esModuleInterop --outDir lib",
"build:doc": "vite build --config ./build/doc.config.ts",
"build:lib": "tsc --outDir lib && vite build --config ./build/lib.config.ts && yarn build:types",
"preview": "vite preview",
"generate": "node ./util/create-component",
"publishNpm": "npm publish --access public"
},
"dependencies": {
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"goober": "^2.1.10",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^17.0.33",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"@vitejs/plugin-react-refresh": "^1.3.6",
"framer-motion": "^6.2.8",
"react-beautiful-dnd": "^13.1.0",
"react-contenteditable": "^3.3.6",
"react-router-dom": "^6.2.2",
"sass": "^1.49.9",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-dts": "^1.0.4",
"vite-plugin-dts": "^1.0.4",
"vite-plugin-mdx": "^3.5.10",
"zustand": "^3.7.2"
},
"peerDependencies": {}
}