-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
92 lines (92 loc) · 3.07 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "formwerk-mono-repo",
"private": true,
"description": "",
"main": "index.js",
"type": "module",
"packageManager": "[email protected]+sha256.3ee53e914011ec7f1a6e3ab0c58b9a024a052bfe18295b23b68567d6a6a5ebcd",
"homepage": "https://formwerk.dev",
"repository": "https://github.com/formwerkjs/formwerk",
"scripts": {
"test": "vitest",
"cover": "vitest run --coverage",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier \"./**/*.ts\" --write",
"build": "tsx scripts/build.ts",
"build:watch": "tsx scripts/watch.ts",
"typecheck": "pnpm typecheck:lib && pnpm typecheck:node",
"typecheck:lib": "pnpm tsc --noEmit --project ./tsconfig.lib.json --skipLibCheck",
"typecheck:node": "pnpm tsc --noEmit --project ./tsconfig.node.json --skipLibCheck",
"postinstall": "husky install",
"prepare": "husky",
"prepublishOnly": "pnpm test && pnpm build",
"playground:dev": "cd ./packages/playground && pnpm dev && cd -",
"dev": "concurrently \"pnpm build:watch\" \"pnpm playground:dev\"",
"ci:copy-mds": "tsx scripts/copy-mds.ts",
"ci:publish": "pnpm build && pnpm publish --provenance --access public -r",
"ci:version": "pnpm changeset version && pnpm ci:copy-mds",
"ci:tag": "tsx ./scripts/tag-release.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "9.19.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/vue": "^8.1.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/ui": "^3.0.4",
"@vue/compiler-dom": "^3.5.13",
"concurrently": "^9.1.2",
"consola": "^3.4.0",
"eslint": "9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"filesize": "^10.1.6",
"flush-promises": "^1.0.2",
"fs-extra": "^11.3.0",
"globals": "^15.14.0",
"gzip-size": "^7.0.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"pkg-pr-new": "^0.0.39",
"prettier": "^3.4.2",
"rollup": "^4.34.0",
"rollup-plugin-dts": "^6.1.1",
"terser": "^5.37.0",
"tslint-config-prettier": "^1.18.0",
"tsx": "^4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.22.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4",
"vitest-axe": "1.0.0-pre.3",
"vitest-dom": "^0.1.1",
"vue": "^3.5.13"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"vitest run related --passWithNoTests"
],
"*.js": [
"eslint --fix",
"vitest run related --passWithNoTests"
]
},
"keywords": [],
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT"
}