-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "dockbar",
"type": "module",
"version": "0.1.5",
"description": "A macOS-like dock made with Web-Components",
"license": "MIT",
"keywords": [
"macOS",
"dock",
"macOS-dock"
],
"author": "CatsJuice<https://github.com/CatsJuice>",
"repository": "https://github.com/catsjuice/dockbar/",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dockbar.js"
},
"./dist": {
"types": "./dist/types/index.d.ts",
"import": "./dist/dockbar.js"
}
},
"main": "./dockbar.js",
"module": "./dockbar.js",
"types": "./types/index.d.ts",
"scripts": {
"postinstall": "npx simple-git-hooks",
"dev": "cd packages/dockbar && pnpm dev",
"dev:playground": "pnpm --filter playground dev",
"build:dockbar": "cd packages/dockbar && pnpm build",
"build:playground": "pnpm --filter playground build",
"build": "node ./.build.mjs",
"publish": "node ./.build.mjs --publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"brotli-size": "^4.0.0",
"bumpp": "^9.1.1",
"chalk": "^5.3.0",
"eslint": "^8.44.0",
"execa": "^7.1.1",
"lint-staged": "^13.2.3",
"pretty-bytes": "^6.1.0",
"prompts": "^2.4.2",
"rimraf": "^5.0.1",
"shx": "^0.3.4",
"simple-git-hooks": "^2.8.1",
"unocss": "^0.53.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.(ts|js|tsx|jsx|vue)": "eslint --fix"
}
}