-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.24 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
{
"name": "@styleframe/monorepo",
"version": "1.0.0",
"private": true,
"description": "From simple UI styles to full Design Systems, write code using Styleframe’s powerful TypeScript CSS API — AI-ready by design.",
"author": "Alex Grozav <alex@styleframe.dev>",
"scripts": {
"dev": "turbo run dev",
"dev:docs": "turbo run dev --filter @styleframe/docs --filter @styleframe/storybook",
"storybook": "turbo run dev --filter @styleframe/storybook",
"ci:changeset": "changeset",
"ci:publish": "pnpm run ci:prepublish && changeset publish",
"ci:version": "changeset version && pnpm run ci:postversion",
"ci:postversion": "pnpm install --no-frozen-lockfile && pnpm --filter @styleframe/cli run prebuild",
"ci:prepublish": "pnpm build:nodocs",
"build": "turbo run build",
"build:nodocs": "turbo run build --filter './engine/*' --filter './tooling/*' --filter './theme'",
"build:docs": "turbo run build --filter './apps/docs'",
"test": "turbo run test",
"test:integration": "turbo run start --filter './testing/integration'",
"typecheck": "turbo run typecheck",
"lint": "oxlint",
"format:check": "biome format",
"format": "biome format --write",
"prepare": "husky",
"cleanup": "git clean -ffdx -e '.env.*'"
},
"keywords": [
"styleframe",
"css"
],
"homepage": "https://styleframe.dev",
"repository": {
"type": "git",
"url": "https://github.com/styleframe-dev/styleframe"
},
"bugs": {
"email": "support@styleframe.dev",
"url": "https://github.com/styleframe-dev/styleframe/issues"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@changesets/cli": "^2.29.7",
"@changesets/changelog-github": "^0.5.1",
"@styleframe/config-typescript": "workspace:^2",
"husky": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"oxlint": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.7.1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,yaml}": [
"biome format --write --no-errors-on-unmatched"
],
"*.{js,ts,jsx,tsx}": [
"oxlint --fix"
]
},
"license": "MIT"
}