-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
65 lines (65 loc) · 2.2 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
{
"name": "react-cmdk",
"version": "1.3.9",
"description": "A fast, accessible, and pretty React.js command palette",
"homepage": "https://react-cmdk.com",
"main": "dist/index.js",
"repository": "https://github.com/albingroen/react-cmdk",
"license": "MIT",
"scripts": {
"build": "npm run build:types && npm run build:js && npm run build-tailwind",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"check:format": "prettier --list-different \"./**/*.{ts,tsx,js,json,md}\" --ignore-path ./prettierignore",
"build-tailwind": "NODE_ENV=production npx tailwindcss -i tailwind.css -o ./dist/cmdk.css --postcss --minify",
"type-check:watch": "npm run type-check --watch",
"test": "npm run lint && npm run check:format",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"type-check": "tsc -b -v --noEmit",
"format": "prettier --write .",
"build:types": "tsc -b -v",
"chromatic": "chromatic"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.5.6",
"@types/react": "^18.0.11",
"@types/react-dom": "^18.0.5",
"@types/react-outside-click-handler": "^1.3.1",
"@types/webpack": "^5.28.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.3",
"postcss": "^8.4.14",
"postcss-prefix-selector": "^1.15.0",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0"
},
"babel": {
"presets": [
"@babel/env",
"@babel/typescript",
"@babel/react"
]
},
"dependencies": {
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^2.0.13"
},
"peerDependencies": {
"react": "^16.x || ^17.x || ^18.x",
"react-dom": "^16.x || ^17.x || ^18.x"
}
}