-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "knjshimi-vite-shopify",
"version": "0.0.1",
"type": "module",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*",
"example/*",
"example-zero/*"
],
"scripts": {
"build": "turbo run build --filter=vite-plugin-*",
"dev": "turbo run dev --filter=vite-plugin-* --parallel",
"lint": "turbo run lint --filter=vite-plugin-* --parallel",
"format": "prettier --write . && turbo run format --parallel",
"change:add": "changeset add",
"change:version": "changeset version",
"change:publish": "npm run build && changeset publish",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:preview": "pnpm -C docs run dev",
"test": "turbo run test --filter=vite-plugin-*"
},
"engines": {
"node": "^18.18.0 || ^20.0.0 || >=22.0.0"
},
"devDependencies": {
"@types/node": "22.0.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.0"
}