-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "react-kawaii",
"version": "0.18.0",
"description": "React Kawaii is a library of cute SVG illustrations (react components). Ideal if you want to give some cuteness and personality to your react application.",
"main": "index.js",
"private": true,
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev --filter website",
"lint": "turbo run lint",
"test": "turbo run test",
"tsc": "turbo run tsc",
"format-check": "prettier --check \"./**/*.{ts,tsx,css,json,md,yml,yaml}\"",
"format-write": "prettier --write \"./**/*.{ts,tsx,css,json,md,yml,yaml}\"",
"check-subprojects": "tsx scripts/checkSubprojects.ts",
"prepare": "husky",
"changeset": "changeset",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/prettier": "^2.7.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "=2.8.8",
"prettier-plugin-organize-imports": "^3.2.4",
"tsx": "^4.9.3",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npx prettier --config=.prettierrc.precommit.js --write"
],
"*.{css,json,md,yml,yaml}": [
"npx prettier --write"
]
},
"pnpm": {
"overrides": {
"@mdx-js/esbuild": "3.0.0",
"@mdx-js/mdx": "3.0.0",
"remark-mdx": "3.0.0",
"remark-parse": "11.0.0",
"remark-stringify": "11.0.0",
"unified": "11.0.4"
}
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}