-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.47 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
{
"name": "giffium-monorepo",
"description": "A monorepo for Giffium, the social sharable diff tool",
"version": "0.0.1",
"license": "MIT",
"author": "Chris Griffing",
"contributors": [],
"private": true,
"scripts": {
"postinstall": "pnpm build",
"dev": "pnpm run --filter ./playgrounds/app dev",
"build": "cd packages/shikicode && pnpm build && cd ../shiki-magic-move && pnpm build && cd ../../playgrounds/app && pnpm build",
"test": "turbo run test --filter=./packages/*",
"typecheck": "turbo run typecheck --filter=./packages/*",
"build-test": "turbo run build test --filter=./packages/*",
"format": "prettier --ignore-path .gitignore -w \"packages/**/*.{js,ts,json,css,tsx,jsx,md}\" \"playgrounds/**/*.{js,ts,json,css,tsx,jsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version && pnpm i",
"ci:version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm build && changeset publish",
"update-deps": "pnpm up -Lri"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"concurrently": "^7.6.0",
"jsdom": "^21.0.0",
"prettier": "2.8.3",
"solid-js": "^1.6.9",
"tsup": "^6.5.0",
"tsup-preset-solid": "^0.1.3",
"turbo": "^1.7.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.27.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}