-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "@backmoji/monorepo",
"type": "module",
"version": "0.1.1",
"private": true,
"packageManager": "[email protected]",
"description": "A library for creating patterns quickly and easily",
"author": {
"name": "Cole",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bernankez/backmoji.git"
},
"scripts": {
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"clean": "rimraf --glob packages/*/{dist}",
"play": "pnpm -F \"./playground\" dev",
"play:build": "pnpm -F \"./playground\" build",
"play:preview": "pnpm -F \"./playground\" preview",
"dev": "pnpm -r -F \"./packages/*\" dev && pnpm play",
"build": "pnpm clean && pnpm -r -F \"./packages/*\" build && pnpm play:build",
"preview": "pnpm play:preview",
"release": "bumpp -r && pnpm build && pnpm publish -r",
"test": "vitest",
"test:once": "vitest run",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit && pnpm -F \"./playground\" typecheck",
"lint": "eslint . -f mo",
"fix": "eslint . -f mo --fix"
},
"devDependencies": {
"@bernankez/eslint-config": "^1.3.2",
"@bernankez/utils": "^0.6.2",
"@types/node": "^20.12.7",
"@unocss/eslint-plugin": "^0.59.3",
"backmoji": "workspace:*",
"bumpp": "^9.4.0",
"eslint": "^9.0.0",
"eslint-formatter-mo": "^1.2.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-format": "^0.1.1",
"happy-dom": "^14.7.1",
"lint-staged": "^15.2.2",
"prettier-plugin-astro": "^0.13.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.8.3",
"vitest": "^1.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}