-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "sebspark",
"version": "0.0.0",
"license": "Apache-2.0",
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "rm -rf ./packages/**/dist",
"dev": "turbo dev",
"format": "biome format --write",
"generate:package": "turbo gen package",
"lint:watch": "turbo watch lint",
"lint:write": "biome check --write",
"lint": "turbo lint",
"release": "npm run build && npx changeset publish",
"start": "turbo watch lint test typecheck",
"test:watch": "turbo watch test",
"test": "turbo test",
"typecheck": "turbo typecheck"
},
"private": true,
"dependencies": {
"@changesets/cli": "2.27.11"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@turbo/gen": "2.3.3",
"@types/node": "20.14.2",
"@vitest/coverage-v8": "2.1.8",
"csv-parse": "5.6.0",
"fast-xml-parser": "4.5.1",
"tsup": "8.3.5",
"turbo": "2.3.3",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"resolutions": {
"cross-spawn": "~7.0.6",
"semver": "~7.5.4",
"word-wrap": "~1.2.5"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}