-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 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
{
"name": "vue-funcall",
"version": "0.0.1",
"description": "A monorepo for vue-funcall",
"type": "module",
"license": "MIT",
"homepage": "https://preflower.github.io/vue-funcall",
"bugs": {
"url": "https://github.com/preflower/vue-funcall/issues"
},
"repository": "https://github.com/preflower/vue-funcall",
"author": "Ted Lin <preflower.lin@gmail.com> (https://github.com/preflower)",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"docs:dev": "pnpm --filter docs run docs:dev",
"docs:build": "pnpm build && pnpm --filter docs run docs:build",
"build": "pnpm --filter vue-funcall run build",
"prepare": "husky install",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"eslint": "^9.39.4",
"eslint-config-ted": "^4.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"vue-tsc": "^3.2.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
}
}