-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.12 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.12 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
{
"name": "vanilla-extract",
"version": "0.0.0",
"private": true,
"author": "SEEK",
"license": "MIT",
"scripts": {
"dev": "preconstruct dev",
"build": "preconstruct build && pnpm build:dts",
"build:dts": "node ./scripts/build-dts.ts",
"watch": "preconstruct watch",
"start-fixture": "tsx ./test-helpers/src/startFixtureCLI",
"start": "pnpm start-fixture themed",
"start-site": "pnpm --filter=site start",
"build-site": "pnpm --filter=site build",
"test:unit": "vitest run",
"test:playwright": "pnpm test:clean-next && pnpm test:build-next && playwright test",
"test:clean-next": "pnpm --filter=@fixtures/next-* run '/^clean.*/'",
"test:build-next": "node scripts/copy-next-plugin.ts && pnpm --filter=@fixtures/next-* run '/^build.*/'",
"format": "oxlint --fix && prettier --write .",
"lint": "pnpm run --no-bail '/^lint:.*/'",
"lint:manypkg": "manypkg check",
"lint:prettier": "prettier --cache --check .",
"lint:tsc": "tsc",
"lint:oxlint": "oxlint",
"copy-readme-to-packages": "node scripts/copy-readme-to-packages.ts",
"version": "changeset version && pnpm install --lockfile-only",
"prepare-release": "pnpm copy-readme-to-packages && pnpm build",
"release": "pnpm prepare-release && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@manypkg/cli": "^0.25.1",
"@playwright/test": "^1.57.0",
"@preconstruct/cli": "^2.8.2",
"@types/node": "^22.15.3",
"@vanilla-extract/vite-plugin": "workspace:*",
"jsdom": "^29.0.0",
"oxlint": "^1.55.0",
"prettier": "^3.8.1",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
},
"preconstruct": {
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"keepDynamicImportAsDynamicImportInCommonJS": true
},
"packages": [
"packages/*"
]
},
"manypkg": {
"workspaceProtocol": "require"
},
"packageManager": "pnpm@10.32.0"
}