-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 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
{
"name": "stargram",
"version": "0.0.9",
"private": true,
"packageManager": "pnpm@9.0.6",
"description": "Manage all your starred pages.",
"author": "Alex Liu <larch.liu@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/LarchLiu/stargram",
"repository": {
"type": "git",
"url": "git+https://github.com/LarchLiu/stargram.git"
},
"bugs": {
"url": "https://github.com/LarchLiu/stargram/issues"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev:core": "turbo run dev --filter=@stargram/core",
"dev:docs": "turbo run dev --filter=docs",
"dev:ext-chrome": "turbo run dev --filter=chrome-extension...",
"build": "turbo run build",
"build:core": "turbo run build --filter=@stargram/core",
"build:docs": "turbo run build --filter=docs",
"build:ext-chrome": "turbo run build --filter=chrome-extension...",
"build:nuxt": "turbo run build --filter=@server/nuxt3...",
"start:nuxt": "turbo run start --filter=@server/nuxt3",
"release": "bumpp package.json packages/**/package.json packages/**/**/package.json --commit --push --tag && pnpm --filter '@stargram/*' publish --access public",
"test": "vitest run",
"test:core": "turbo run test --filter=@stargram/core",
"tscheck": "turbo run tscheck",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"up": "taze major -r",
"up:w": "taze major -r -w"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@unocss/eslint-config": "^0.58.4",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"eslint-plugin-format": "^0.1.0",
"lint-staged": "^15.2.1",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.2",
"turbo": "^1.12.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.5.2",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}