-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
70 lines (70 loc) · 2.92 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
69
70
{
"private": true,
"type": "module",
"scripts": {
"submodules": "pnpm dlx tsx submodules",
"postinstall": "pnpm dlx husky install",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" build",
"build:examples": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./examples/*\" --parallel build",
"check": "pnpm run commit-check && pnpm run build && pnpm --filter \"./packages/*\" --parallel run \"/^(test|lint|type-check)/\"",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel test",
"e2e": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel e2e",
"lint": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel lint",
"type-check": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel type-check",
"commit-check": "commitlint --from=HEAD~1 --verbose"
},
"engines": {
"node": "^20"
},
"repository": {
"type": "git",
"url": "https://github.com/master-co/css.git"
},
"dependencies": {
"@swc-node/jest": "^1.8.0",
"@techor/fs": "^3.0.22",
"@techor/glob": "^3.0.22",
"@techor/jest-dom": "^3.0.22",
"@techor/repo": "^3.0.22",
"@types/node-fetch": "^2.6.11",
"@types/shuffle-array": "^1.0.5",
"cross-env": "^7.0.3",
"fast-glob": "^3.3.2",
"get-tsconfig": "^4.7.3",
"jest-extended": "^4.0.2",
"jest-text-transformer": "^1.0.4",
"nanoid": "^4.0.2",
"shuffle-array": "^1.0.1",
"spawnd": "^9.0.2",
"strip-ansi": "^7.1.0",
"techor": "^3.0.22",
"tinybench": "^2.6.0",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"devDependencies": {
"shared": "workspace:^",
"@master/create-css": "workspace:^",
"@master/css": "workspace:^",
"@master/css-cli": "workspace:^",
"@master/css-explore-config": "workspace:^",
"@master/css-extractor": "workspace:^",
"@master/css-extractor.vite": "workspace:^",
"@master/css-extractor.webpack": "workspace:^",
"@master/css-language-server": "workspace:^",
"@master/css-language-service": "workspace:^",
"@master/css-runtime": "workspace:^",
"@master/css-server": "workspace:^",
"@master/css-validator": "workspace:^",
"@master/css.nuxt": "workspace:^",
"@master/css.react": "workspace:^",
"@master/css.svelte": "workspace:^",
"@master/css.vue": "workspace:^",
"@master/eslint-config-css": "workspace:^",
"@master/eslint-plugin-css": "workspace:^",
"master-css-vscode": "workspace:^"
}
}