-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.27 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "zoom-image",
"private": true,
"author": "Nam Nguyen <[email protected]>",
"license": "MIT",
"repository": "willnguyen1312/zoom-image",
"homepage": "https://willnguyen1312.github.io/zoom-image",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/willnguyen1312"
},
"keywords": [
"javascript",
"typescript",
"zoom",
"image",
"hover",
"move",
"wheel",
"pinch",
"touch",
"scroll",
"mobile",
"desktop"
],
"scripts": {
"build:docs": "turbo run build --filter=docs... --force",
"build": "turbo run build",
"changeset": "changeset",
"check": "turbo run build typecheck lint test --filter=!docs",
"core": "pnpm --filter=@zoom-image/core",
"docs": "pnpm --filter=docs",
"format:check": "prettier --check --cache --ignore-path .gitignore .",
"format:fix": "prettier --write --cache --ignore-path .gitignore .",
"lint": "turbo run lint",
"postbuild": "pnpm run size",
"preview:docs": "pnpm --filter=docs preview",
"react": "pnpm --filter=@zoom-image/react",
"release": "pnpm check && changeset version && changeset publish",
"size": "esno scripts/size.ts",
"start-angular": "turbo run dev --filter=with-angular...",
"start-docs": "turbo run dev --filter=docs...",
"start-next": "turbo run dev --filter=with-next...",
"start-remix": "turbo run dev --filter=with-remix...",
"start-preact": "turbo run dev --filter=with-preact...",
"start-qwik": "turbo run dev --filter=with-qwik...",
"start-react": "turbo run dev --filter=with-react...",
"start-solid": "turbo run dev --filter=with-solid...",
"start-svelte": "turbo run dev --filter=with-svelte...",
"start-vanilla": "turbo run dev --filter=with-vanilla...",
"start-vue": "turbo run dev --filter=with-vue...",
"test": "turbo run test",
"turbo:update": "pnpx @turbo/codemod update",
"typecheck": "turbo run typecheck"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"export-size": "^0.7.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.13.3",
"unocss": "^0.58.5"
}
}