-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "vue3-ribbon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r run dev",
"lint": "pnpm -r run lint",
"clean": "npx rimraf node_modules pnpm-lock.yaml",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"commit": "git add -A && git cz",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "build build --filter=docs^... && changeset publish",
"prepare": "husky install",
"docs:dev": "pnpm -r run docs:dev"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"commitizen": "^4.3.0",
"commitlint-config-gitmoji": "^2.3.1",
"cz-customizable": "^7.0.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"turbo": "^1.10.3"
},
"packageManager": "pnpm@8.6.0",
"pnpm": {
"default": "8.6.0"
},
"config": {
"commitizen": {
"path": "cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
}
}