-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.5 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
{
"name": "vslint",
"version": "0.0.1",
"description": "Custom matcher for React testing frameworks that uses multi-modal AI models to enforce UI/UX patterns",
"keywords": ["ai", "design", "testing"],
"homepage": "https://github.com/leohentschker/vslint",
"bugs": {
"url": "https://github.com/leohentschker/vslint/issues"
},
"author": "Leo Hentschker <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/leohentschker/vslint.git"
},
"workspaces": ["packages/*"],
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.8",
"cz-conventional-changelog": "^3.3.0",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"scripts": {
"build": "cd packages/jest && npm run build && cd ../shared && npm run build",
"format": "biome format --write",
"check": "biome check",
"ci": "npm run build && npm run check && cd packages/jest && npm run test && cd ../vitest && npm run test && cd ../shared && npm run test && cd ../server && npm run test && cd ../.. && npm run check-exports",
"check-exports": "attw --pack ./packages/*",
"start-release": "changeset",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"dependencies": {
"@vslint/shared": "workspace:*",
"winston": "^3.14.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}