-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "kobalte-monorepo",
"version": "0.0.0",
"private": true,
"description": "A UI toolkit for building SolidJS applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/kobaltedev/kobalte.git"
},
"license": "MIT",
"author": "jer3m01 <[email protected]>",
"contributors": ["Fabien Marie-Louise <[email protected]>"],
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build": "turbo run build",
"build:libs": "pnpm -F \\!docs -F \\!playground build && pnpm i",
"changeset": "changeset",
"ci:release": "pnpm build && changeset publish",
"ci:version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"clean": "turbo run clean && rm -rf node_modules",
"commit": "git-cz",
"dev:core": "pnpm -F @kobalte/core dev",
"dev:docs": "pnpm -F @kobalte/docs dev",
"format": "biome check --write && prettier . --write",
"check": "biome check",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@biomejs/biome": "1.8.1",
"@changesets/cli": "2.26.2",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/cz-commitlint": "17.7.1",
"@solidjs/testing-library": "0.8.6",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.5.4",
"babel-preset-solid": "1.7.7",
"commitizen": "4.3.0",
"inquirer": "8.2.5",
"jsdom": "19.0.0",
"prettier": "4.0.0-alpha.8",
"prettier-plugin-tailwindcss": "0.5.3",
"rollup": "3.28.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-license": "3.2.0",
"rollup-preset-solid": "2.0.1",
"solid-js": "1.8.15",
"tsup": "7.2.0",
"turbo": "1.10.13",
"typescript": "4.9.5",
"vite": "5.0.11",
"vite-plugin-solid": "2.9.1",
"vitest": "1.3.1",
"@vitest/ui": "^1.5.2"
},
"packageManager": "[email protected]"
}