-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "cuppy",
"private": true,
"author": "Sam <moltinginstar@gmail.com>",
"version": "1.0.0",
"type": "module",
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"packageManager": "pnpm@9.12.1",
"repository": {
"type": "git",
"url": "git+https://github.com/moltinginstar/cuppy.git"
},
"homepage": "https://moltinginstar.com/cuppy",
"bugs": "https://github.com/moltinginstar/cuppy/issues",
"scripts": {
"dev": "pnpm run --parallel --stream dev",
"build": "pnpm run --recursive --stream build",
"clean": "pnpm run --parallel --stream clean",
"release": "pnpm lerna publish --conventional-commits",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^22.10.2",
"camelcase": "^8.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.4.0"
}
}