-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.52 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
{
"name": "gqfn",
"type": "module",
"version": "0.4.1",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Teages/gqfn.git"
},
"scripts": {
"postinstall": "pnpm -C packages/core build",
"lint": "eslint --cache . && pnpm --filter=!. lint",
"lint:fix": "eslint --cache --fix . && pnpm --filter=!. lint:fix",
"test": "pnpm --filter ./packages/** test",
"test:full": "pnpm --filter ./packages/** test:full",
"test:types": "pnpm --filter ./packages/** test:types",
"build": "pnpm docs:build && pnpm prepack",
"prepack": "pnpm --filter ./packages/** prepack",
"docs:dev": "pnpm -C docs dev",
"docs:build": "pnpm -C docs build",
"docs:preview": "pnpm -C docs preview",
"changelog:preview": "changelogen",
"changelog:bump": "pnpm cli pre-bump && changelogen --release --no-commit --no-tag && pnpm cli post-bump",
"cli": "tsx scripts",
"release": "pnpm test:full && pnpm prepack && pnpm changelog:bump && pnpm cli pre-release && git push --follow-tags && pnpm --filter ./packages/** publish"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@drizzle-team/brocli": "^0.11.0",
"changelogen": "^0.5.5",
"consola": "^3.2.3",
"eslint": "^9.15.0",
"fast-glob": "^3.3.2",
"pathe": "^1.1.2",
"pkg-types": "^1.1.3",
"simple-git": "^3.25.0",
"tsx": "^4.19.2"
},
"resolutions": {
"@gqfn/core": "workspace:*",
"@gqfn/nuxt": "workspace:*"
}
}