-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.83 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
{
"version": "0.2.5",
"name": "@apideck/wayfinder",
"author": "Apideck",
"license": "MIT",
"main": "./dist/wayfinder.umd.js",
"module": "./dist/wayfinder.es.js",
"typings": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/wayfinder.es.js",
"require": "./dist/wayfinder.umd.js"
}
},
"files": [
"dist"
],
"keywords": [
"apideck"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && yarn copy-css",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write ./src",
"preview": "vite preview",
"release": "np --no-publish && npm publish --access public --registry https://registry.npmjs.org",
"typecheck": "vue-tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"copy-css": "cp ./src/styles/custom.css ./dist/styles.css",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apideck-io/wayfinder.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"classnames": "2.3.2",
"json-to-ast": "^2.1.0",
"jsonc-parser": "^3.2.0",
"jsonpath": "^1.1.1",
"monaco-editor": "^0.44.0",
"use-clipboard-copy": "0.2.0"
},
"devDependencies": {
"@esbuild/darwin-x64": "^0.19.5",
"@headlessui/react": "^1.4.2",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@tailwindcss/forms": "^0.5.6",
"@types/jest": "^29.5.7",
"@types/json-to-ast": "^2.1.2",
"@types/jsonpath": "^0.2.1",
"@types/node": "^20.8.8",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.16",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"np": "^8.0.4",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3"
}
}