-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "vite-plugin-env-config-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"dev": "pnpm --dir packages/vite-plugin-env-config dev",
"build": "pnpm -r build",
"test": "pnpm -r --workspace-concurrency=1 test",
"lint": "eslint --ignore-path .gitignore '**/*.{js,ts,md}'",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --ignore-path .gitignore '**/*.{js,ts,md}' --check",
"format:fix": "pnpm run format --write",
"fixup": "run-s lint:fix format:fix",
"release": "pnpm run build && pnpm changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tsm": "^2.3.0",
"tsup": "^6.7.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{,js,ts,md}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^7.5.0",
"yarn": "forbidden, use pnpm",
"npm": "forbidden, use pnpm",
"node": "^14.13.1 || ^16.0.0 || >=18"
},
"pnpm": {
"overrides": {
"@svitejs/vite-plugin-env-config": "workspace:*"
}
}
}