-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "tailwindcss-cmdk",
"version": "0.0.3",
"description": "github.com/pacocoursey/cmdk attribute selectors for tailwind",
"main": "dist/index.js",
"files": [
"/dist"
],
"sideEffects": false,
"packageManager": "pnpm@7.11.0",
"repository": {
"type": "git",
"url": "git+https://github.com/myleslinder/tailwindcss-cmdk.git"
},
"homepage": "https://github.com/myleslinder/tailwindcss-cmdk",
"scripts": {
"build": "tsup src/index.ts",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc -b",
"prepublishOnly": "npm run build"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": false
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"devDependencies": {
"@myleslinder/prettier-config": "^0.0.1",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"tailwindcss": "^3.1.6",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"keywords": [],
"author": "Myles Linder",
"license": "MIT"
}