-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.63 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.63 KB
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
{
"name": "lynkit",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "pnpm@9.15.4",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean && rm -rf node_modules .turbo",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"playground": "pnpm --filter @lynkit/playground dev",
"docs": "pnpm --filter @lynkit/docs dev",
"docs:build": "pnpm --filter @lynkit/docs build",
"docs:preview": "pnpm --filter @lynkit/docs preview",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo build && changeset publish",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/LynnCen/LynKit"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.20.0",
"@types/node": "^20.17.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.0",
"prettier": "^3.5.0",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.5",
"turbo": "^2.7.6",
"typescript": "^5.7.3"
}
}