This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "zagf-repo",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/anubra266/zagf.git"
},
"author": "Abraham Aremu <[email protected]>",
"license": "MIT",
"scripts": {
"package": "pnpm --filter=./package",
"build": "pnpm package -- build",
"prepare": "husky install",
"clean-pkgs": "pnpm -r exec rm -rf dist .swc *.log",
"clean": "pnpm clean-pkgs && rm -rf node_modules",
"react": "pnpm --filter \"./examples/next-ts\"",
"typecheck": "pnpm package -- typecheck",
"prettier": "prettier --check package/*",
"prettier-fix": "prettier --write package/*",
"lint": "eslint package",
"version": "changeset version",
"release": "changeset publish",
"test": "vitest",
"website": "pnpm --filter=./website"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@playwright/test": "1.47.2",
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"commitlint": "19.5.0",
"eslint": "9.12.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"tsup": "8.3.0",
"typescript": "5.5.4",
"vite": "5.4.8",
"vite-plugin-dts": "4.2.3",
"vitest": "1.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"cross-env": "^7.0.3",
"prettier-plugin-svelte": "^3.2.5"
}
}