-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.27 KB
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
{
"name": "@tooark/root",
"version": "1.0.1",
"description": "Web Component Library for Angular, React, and Vue projects",
"private": true,
"type": "module",
"keywords": [
"web-components",
"angular",
"react",
"vue",
"storybook",
"tailwindcss",
"components",
"motion"
],
"author": {
"name": "Paulo Sergio de Freitas Junior",
"email": "paulo.freitas@tooark.com",
"url": "https://paulofreitas.tooark.com"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/paulosfjunior"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/paulosfjunior"
}
],
"repository": {
"url": "https://github.com/Tooark/web-components"
},
"license": "Apache-2.0",
"packageManager": "pnpm@12.4.2",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"install:ci": "pnpm install --frozen-lockfile",
"version": "node scripts/sync-versions.mjs && git add packages/*/package.json",
"version:sync": "node scripts/sync-versions.mjs",
"build": "pnpm -r build",
"dev:storybook": "pnpm --filter storybook storybook",
"clean": "pnpm -r run clean",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"check:publish": "node scripts/check-publish.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "2.5.14",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@storybook/addon-a11y": "^10.6.0",
"@storybook/addon-docs": "^10.6.0",
"@storybook/addon-vitest": "^10.6.0",
"@storybook/web-components-vite": "^10.6.0",
"@tailwindcss/cli": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@vitest/browser": "^4.1.11",
"@vitest/browser-playwright": "^4.1.11",
"@vitest/coverage-v8": "^4.1.11",
"playwright": "^1.63.0",
"publint": "^0.3.24",
"rimraf": "^6.1.3",
"rollup": "^4.63.3",
"rollup-plugin-dts": "^6.5.1",
"storybook": "^10.6.0",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
}
}