-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.96 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 4.96 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"private": true,
"type": "module",
"packageManager": "pnpm@11.9.0",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.9.0",
"onFail": "ignore"
}
},
"scripts": {
"submodules": "node submodules.js",
"postinstall": "husky install",
"build": "node scripts/with-typescript-tooling-compat.mjs turbo run build --filter=\"./packages/*\"",
"build:site": "pnpm build && pnpm --filter site build",
"build:site:cloudflare-pages": "pnpm build && pnpm --filter site build:cloudflare-pages",
"build:examples": "node scripts/with-typescript-tooling-compat.mjs turbo run build --filter=\"./examples/*\"",
"dev:site": "pnpm build && pnpm --filter site dev",
"dev:site:clean": "pnpm --filter site clean:next && pnpm dev:site",
"release:vscode": "node packages/vscode/scripts/release.js",
"release": "semantic-release",
"check": "pnpm run commit-check && node scripts/with-typescript-tooling-compat.mjs turbo run test lint type-check --filter=\"./packages/*\"",
"test": "node scripts/with-typescript-tooling-compat.mjs turbo run test --filter=\"./packages/*\"",
"e2e": "node scripts/with-typescript-tooling-compat.mjs turbo run e2e --filter=\"./packages/*\" --filter=\"!@master/css-runtime\" --concurrency=1 && pnpm --filter @master/css-runtime e2e",
"lint": "node scripts/with-typescript-tooling-compat.mjs turbo run lint --filter=\"./packages/*\"",
"type-check": "node scripts/with-typescript-tooling-compat.mjs turbo run type-check --filter=\"./packages/*\"",
"type-check:refs": "tsc -b tsconfig.typecheck.json",
"type-check:clean": "tsc -b tsconfig.typecheck.json --clean",
"type-check:affected": "turbo run type-check --affected",
"commit-check": "commitlint --from=HEAD~1 --verbose"
},
"engines": {
"node": "^24"
},
"repository": {
"type": "git",
"url": "https://github.com/master-co/css.git"
},
"dependencies": {
"@master/css": "workspace:^",
"@master/css-cli": "workspace:^",
"@master/css-compiler": "workspace:^",
"@master/css-diagnostics": "workspace:^",
"@master/css-engine": "workspace:^",
"@master/css-integration": "workspace:^",
"@master/css-language": "workspace:^",
"@master/css-language-server": "workspace:^",
"@master/css-language-service": "workspace:^",
"@master/css-lexer": "workspace:^",
"@master/css-lint": "workspace:^",
"@master/css-mcp": "workspace:^",
"@master/css-preset": "workspace:^",
"@master/css-project": "workspace:^",
"@master/css-runtime": "workspace:^",
"@master/css-scanner": "workspace:^",
"@master/css-schema": "workspace:^",
"@master/css-server": "workspace:^",
"@master/css-source": "workspace:^",
"@master/css-sv": "workspace:^",
"@master/css-stylesheet": "workspace:^",
"@master/css-validator": "workspace:^",
"@master/css.figma": "workspace:^",
"@master/css.next": "workspace:^",
"@master/css.nuxt": "workspace:^",
"@master/css.svelte": "workspace:^",
"@master/css.vite": "workspace:^",
"@master/css.webpack": "workspace:^",
"@master/eslint-config-css": "workspace:^",
"@master/eslint-plugin-css": "workspace:^"
},
"devDependencies": {
"@aronrepo/commitlint-config": "^2.2.0",
"@aronrepo/conventional-changelog-config": "^2.2.0",
"@aronrepo/conventional-commits": "^2.2.0",
"@aronrepo/semantic-release-config": "^2.2.0",
"@aronrepo/semantic-release-pnpm": "^2.2.0",
"@commitlint/cli": "^21.1.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/release-notes-generator": "^14.1.1",
"@ts-macro/tsc": "^0.3.7",
"@types/edit-json-file": "^1.7.4",
"aronrepo": "^2.2.0",
"concurrently": "^9.2.3",
"husky": "^9.1.7",
"master-css-vscode": "workspace:^",
"semantic-release": "^25.0.5",
"tsdown": "^0.22.4",
"turbo": "^2.10.0",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "1.61.0",
"@swc-node/jest": "^1.9.1",
"@types/node": "^25.9.4",
"@types/node-fetch": "^2.6.13",
"@types/shuffle-array": "^1.0.5",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"cross-env": "^10.1.0",
"edit-json-file": "^1.8.1",
"eslint": "^10.6.0",
"eslint-plugin-playwright": "^2.10.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"get-tsconfig": "^4.14.0",
"globals": "^17.7.0",
"jest-extended": "^7.0.0",
"jest-text-transformer": "^1.0.4",
"js-beautify": "^1.15.4",
"nanoid": "^5.1.16",
"nodemon": "^3.1.14",
"shuffle-array": "^1.0.1",
"strip-ansi": "^7.2.0",
"tinybench": "^6.0.2",
"ts-dedent": "^2.3.0",
"ts-jest": "^29.4.11",
"tsx": "^4.22.4",
"typescript": "^7.0.2",
"typescript-eslint": "^8.62.0",
"typescript6": "npm:typescript@6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9"
}
}