-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.14 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.14 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
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
{
"name": "cmdk-solid-root",
"version": "1.1.0",
"description": "Fast, Unstyled, Command Menu for SolidJS",
"license": "MIT",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/create-signal/cmdk-solid.git"
},
"homepage": "https://github.com/create-signal/cmdk-solid#readme",
"bugs": {
"url": "https://github.com/create-signal/cmdk-solid/issues"
},
"files": [
"dist"
],
"private": true,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"build": "pnpm -F cmdk-solid build",
"dev": "pnpm -F cmdk-solid build --watch",
"website": "pnpm -F website dev",
"testsite": "pnpm -F test dev",
"format": "prettier '**/*.{js,jsx,ts,tsx,json,md,mdx,css,scss,yaml,yml}' --write",
"preinstall": "npx only-allow pnpm",
"test:format": "prettier '**/*.{js,jsx,ts,tsx,json,md,mdx,css,scss,yaml,yml}' --check",
"test": "playwright test"
},
"peerDependencies": {
"solid-js": "^1.8"
},
"devDependencies": {
"@playwright/test": "1.49.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"concurrently": "^8.2.0",
"esbuild": "^0.18.15",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.45.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^22.1.0",
"prettier": "3.0.0",
"solid-js": "^1.8",
"tsup": "^8.0.0",
"tsup-preset-solid": "^2.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.6",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.33.0"
},
"keywords": [
"solid"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
}
}