generated from finsweet/developer-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "@finsweet/docs-theme",
"version": "0.1.8",
"description": "Official docs starter template for Finsweet projects.",
"homepage": "https://github.com/finsweet/docs-theme#readme",
"license": "ISC",
"keywords": [],
"author": {
"name": "Finsweet",
"url": "https://www.finsweet.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finsweet/docs-theme.git"
},
"bugs": {
"url": "https://github.com/finsweet/docs-theme/issues"
},
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"exports": "./src/index.ts",
"files": [
"src"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ignore-path .gitignore ./src && prettier --check ./src",
"lint:fix": "eslint --ignore-path .gitignore ./src --fix",
"check": "tsc --noEmit",
"format": "prettier --write ./src",
"release": "changeset publish",
"update": "pnpm update -i -L -r"
},
"devDependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.0",
"@finsweet/eslint-config": "^2.0.2",
"@finsweet/tsconfig": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vitepress": "1.0.0-alpha.49",
"vue": "^3.2.47"
},
"peerDependencies": {
"vitepress": "^1.0.0-alpha.49",
"vue": "^3.2.47"
}
}