-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "petite",
"private": true,
"packageManager": "[email protected]",
"version": "1.0.0",
"description": "An opinionated Vue template for libraries that want to support delivering both Vue 2 and Vue 3 components. TypeScript-first, with infrastructure to test, develop, and document your components against multiple versions of Vue.",
"repository": "https://github.com/JessicaSachs/petite",
"keywords": [
"vue",
"vue3",
"vue2",
"vue library",
"library template",
"monorepo template"
],
"type": "module",
"author": "Jessica Sachs",
"license": "MIT",
"scripts": {
"clean": "pnpm --filter @petite/* clean",
"lint": "pnpm lint:code",
"lint:code": "pnpm eslint --cache --fix packages/lib-*",
"dev:3": "pnpm --filter @petite/lib-vue3 dev",
"dev:2": "pnpm --filter @petite/lib-vue2 dev",
"dev:docs": "pnpm --filter docs dev",
"build": "pnpm --filter @petite/lib-* build",
"build:docs": "pnpm --filter @petite/docs build",
"postinstall": "esno scripts/symlink packages/lib-vue3/src packages/lib-vue2/src"
},
"devDependencies": {
"@antfu/eslint-config": "0.25.2",
"@typescript-eslint/parser": "5.36.2",
"@vue-bridge/eslint-config": "0.2.0",
"@testing-library/cypress": "8.0.3",
"@vue/tsconfig": "0.1.3",
"cpy-cli": "4.2.0",
"cypress": "10.8.0",
"eslint": "8.23.0",
"esno": "0.16.3",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"pkg-types": "^0.3.5",
"pnpm": "7.9.3",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sass": "^1.55.0",
"typescript": "4.7.4",
"unplugin-vue-components": "0.22.7",
"vite": "^3.1.4",
"vite-plugin-dts": "^1.5.0",
"vitest": "0.23.2",
"vue-eslint-parser": "9.1.0",
"vue-tsc": "0.40.13"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "run-s lint-staged build"
},
"lint-staged": {
"*.{js,ts,tsx,md,vue}": "pnpm lint",
"*.{js,css,md,vue}": "prettier --write"
}
}