-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "tuktuk",
"description": "A flexible framework for fetching design data and outputting it in various design token formats.",
"private": true,
"repository": {
"url": "https://github.com/hacomono-lib/tuktuk",
"type": "git"
},
"author": "mew-ton <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "turbo run prepare --cache-dir=.turbo",
"dev": "turbo run dev",
"dev-test": "vitest --ui",
"doc": "astro dev --root ./docs --open",
"build": "turbo run build --cache-dir=.turbo",
"doc-build": "astro check --root ./docs && astro build --root ./docs",
"test": "yarn test:spec && yarn test:type && yarn test:doc",
"test:spec": "vitest --run --coverage",
"test:type": "turbo run test:type",
"test:doc": "astro check --root ./docs",
"format": "biome format --write ./*",
"lint": "biome check --apply ./*"
},
"devDependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/starlight": "^0.21.5",
"@biomejs/biome": "^1.5.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"astro": "^4.16.18",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"workspaces": [
"packages/*",
"plugins/*",
"examples/*"
],
"packageManager": "[email protected]",
"volta": {
"node": "22.11.0",
"yarn": "4.1.1"
}
}