-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "@preflower/react-use",
"version": "1.0.0",
"description": "A vue hooks library for self",
"author": "",
"license": "ISC",
"homepage": "https://github.com/preflower/use#readme",
"repository": "https://github.com/preflower/use",
"bugs": {
"url": "https://github.com/preflower/use/issues"
},
"keywords": [],
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"esm/",
"lib/"
],
"typings": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build:cjs": "tsc",
"build:es": "tsc -m esNext --moduleResolution bundler --outDir esm",
"build": "pnpm build:cjs && pnpm build:es",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"react": "^19.2.4"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
],
"*.{css,scss,vue}": [
"stylelint --fix"
]
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"rules": {
"selector-max-id": null
}
}
}