-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "tools-up-provider",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --cache=local:r,remote:r --continue",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"clean": "turbo clean && rm -rf node_modules temp",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo test",
"wrangler:deploy": "turbo run wrangler:deploy",
"wrangler:preview": "turbo run wrangler:preview",
"gendocs": "turbo run docs && typedoc --githubPages --entryPointStrategy merge ./.docs-json/*.json -out docs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.10",
"@types/node-fetch": "^2.6.12",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"tsup": "^8.3.5",
"turbo": "^2.3.4",
"zx": "^8.3.0"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"configs/*",
"examples/astro-example"
],
"dependencies": {
"lit": "^3.2.1",
"typedoc": "^0.27.6",
"wrangler": "^3.105.1"
},
"version": "1.0.0"
}