generated from jcamp-code/starter-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.09 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
68
69
70
71
72
73
74
{
"name": "starter-vitepress-theme",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "starter package for building vitepress themes",
"author": "John Campion",
"license": "MIT",
"homepage": "https://github.com/jcamp-code/starter-vitepress-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/jcamp-code/starter-vitepress-theme.git"
},
"bugs": {
"url": "https://github.com/jcamp-code/starter-vitepress-theme/issues"
},
"keywords": [
"vite",
"vue",
"vitepress",
"theme"
],
"exports": {
".": "./src/index.ts"
},
"main": "src/index.ts",
"files": [
"src"
],
"scripts": {
"prepare": "npx simple-git-hooks",
"lint": "prettier --check --write --parser typescript \"{__tests__,docs,src,types}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{__tests__,docs,src,types}/**/*.ts\"",
"type": "tsc --noEmit",
"test": "npm run lint && npm run type",
"dev": "vitepress dev demo",
"build": "vitepress build demo",
"serve": "npm run demo-build && vitepress serve demo",
"release": "changelogen --release --push && pnpm publish",
"release:minor": "changelogen --release --minor --push && pnpm publish",
"release:major": "changelogen --release --major --push && pnpm publish",
"release:patch": "changelogen --release --patch --push && pnpm publish"
},
"peerDependencies": {
"vitepress": "^1.0.0-alpha.73"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@jcamp/eslint-config": "0.6.1",
"@types/node": "^18.15.13",
"changelogen": "^0.5.3",
"commitlint-config-unjs": "^1.0.1",
"eslint": "^8.38.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitepress": "1.0.0-alpha.73",
"vitest": "^0.30.1",
"vue": "^3.2.47"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
],
"allowedVersions": {
"typescript": "5"
}
}
}
}