-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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
45
46
47
48
49
50
51
52
{
"name": "root",
"private": true,
"description": "Indielayer UI Components with Tailwind CSS build for Vue 3",
"scripts": {
"i9": "npx pnpm@9 install",
"prepare": "is-ci || simple-git-hooks",
"dev": "cd packages/ui && pnpm dev",
"build": "cd packages/ui && pnpm build:prod",
"build:docs": "cd packages/ui && pnpm build:prod && pnpm build:docs",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:ui": "eslint --ext .js,.ts,.vue ./packages/ui",
"lint:style": "cd packages/ui && pnpm run stylelint",
"test": "cd packages/ui && pnpm test",
"changeset": "changeset",
"version:prod": "changeset version",
"publish:prod": "changeset publish",
"version:snapshot": "changeset version --snapshot dev",
"publish:snapshot": "changeset publish --no-git-tag --snapshot --tag dev",
"changeset:status": "node .scripts/changesetStatus.js",
"release": "pnpm build && pnpm publish:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indielayer/ui.git"
},
"author": "João Teixeira (https://indielayer.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indielayer/ui/issues"
},
"homepage": "https://github.com/indielayer/ui#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@indielayer/eslint-config-vue": "^3.3.1",
"eslint": "^8.53.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.3.0",
"simple-git-hooks": "^2.9.0",
"tsx": "^3.14.0"
},
"lint-staged": {
"*.{cjs,js,jsx,ts,tsx,vue}": [
"eslint --cache --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npm exec lint-staged --concurrent false",
"commit-msg": "npm exec tsx .scripts/verifyCommit.ts $1"
}
}