-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@stylebucket/core",
"private": true,
"type": "module",
"author": {
"name": "Brett Wood",
"url": "https://github.com/woodbrettm"
},
"license": "MIT",
"packageManager": "[email protected]",
"description": "Stylebucket core modules",
"keywords": [
"css-in-js",
"css"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.15.8"
},
"devDependencies": {
"typescript": "5.3.3",
"turbo": "1.11.3",
"playwright": "1.40.1",
"@playwright/test": "1.40.1",
"@changesets/cli": "2.27.1",
"@types/node": "20.10.6",
"@biomejs/biome": "1.4.1"
},
"scripts": {
"turbo:test:main": "turbo run test:main",
"turbo:test:unit": "turbo run test:unit",
"turbo:watch": "turbo run watch",
"turbo:build": "turbo run build",
"turbo:types": "turbo run lint:types",
"lint:biome": "biome lint .",
"changeset:add": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
}
}