-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.71 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
{
"name": "@stacksjs/command-palette",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@7.13.2",
"description": "The easy way to build your command palette.",
"author": "Chris Breuer",
"license": "MIT",
"homepage": "https://github.com/ow3org/command-palette#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ow3org/command-palette.git"
},
"bugs": {
"url": "https://github.com/ow3org/command-palette/issues"
},
"keywords": [
"vite",
"component",
"composables",
"functions",
"k-bar",
"library",
"vue",
"web components",
"typescript",
"javascript",
"headless"
],
"sideEffects": false,
"contributors": [
"Chris Breuer <chris@ow3.org>"
],
"engines": {
"node": ">=v18.10.0",
"pnpm": ">=7.13.2"
},
"scripts": {
"artisan": "jiti .stacks/artisan/src/index.ts",
"fresh": "pnpm artisan fresh",
"update": "pnpm artisan update",
"dev:components": "pnpm artisan dev:components",
"dev:docs": "pnpm artisan dev:docs",
"build": "pnpm artisan build",
"build:components": "pnpm artisan build:components",
"build:web-components": "pnpm artisan build:web-components",
"build:functions": "pnpm artisan build:functions",
"build:docs": "pnpm artisan build:docs",
"lint": "pnpm artisan lint",
"lint:fix": "pnpm artisan lint:fix",
"make:component": "pnpm artisan make:component",
"make:function": "pnpm artisan make:function",
"make:lang": "pnpm artisan make:lang",
"make:stack": "pnpm artisan make:stack",
"example": "pnpm artisan example",
"example:vue": "pnpm artisan example:vue",
"example:web-components": "pnpm artisan example:web-components",
"commit": "pnpm artisan commit",
"release": "pnpm artisan release",
"build:stacks": "pnpm artisan build:stacks",
"dev:pages": "pnpm artisan dev:pages",
"server:functions": "pnpm artisan server:functions",
"server:pages": "pnpm artisan server:pages",
"changelog": "pnpm artisan changelog",
"deploy:functions": "pnpm artisan deploy:functions",
"deploy:docs": "pnpm artisan deploy:docs",
"test": "pnpm artisan test",
"test:coverage": "pnpm artisan test:coverage",
"test:types": "pnpm artisan test:types",
"types:fix": "pnpm artisan types:fix",
"generate:types": "pnpm artisan generate:types",
"key:generate": "pnpm artisan key:generate",
"a": "pnpm artisan",
"art": "pnpm artisan"
},
"dependencies": {
"@stacksjs/framework": "workspace:*"
},
"devDependencies": {
"@headlessui/vue": "^1.7.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": ".stacks/node_modules/cz-git"
}
}
}