-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "@preflower/use-monorepo",
"version": "1.0.0",
"description": "A monorepo for self that save my work accumulation",
"type": "module",
"keywords": [],
"license": "ISC",
"homepage": "https://github.com/preflower/use#readme",
"bugs": {
"url": "https://github.com/preflower/use/issues"
},
"repository": "https://github.com/preflower/use",
"author": "Ted Lin <[email protected]> (https://github.com/preflower)",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"build": "pnpm --filter=!@preflower/react-use -r run build",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only && pnpm build",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"eslint": "^9.18.0",
"eslint-config-ted": "^4.0.8",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"typescript": "^5.7.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
}
}