-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.97 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
{
"name": "svelte-preprocess-svg-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"dev": "pnpm --dir packages/svelte-preprocess-svg dev",
"build": "pnpm --dir packages/svelte-preprocess-svg build",
"test": "pnpm --dir packages/svelte-preprocess-svg test",
"lint": "eslint --ignore-path .gitignore '**/*.{js,ts,svelte,html,svx,md}'",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --ignore-path .gitignore '**/*.{css,scss,svelte,html,js,ts,svx,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.1",
"@changesets/get-github-info": "^0.5.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"rimraf": "^5.0.1",
"svelte": "^3.59.1",
"tsm": "^2.3.0",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.{js,ts,svelte,html,md,svx}": "eslint --fix",
"*.{css,scss,svelte,html,js,ts,svx,md}": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^8.0.0",
"yarn": "forbidden, use pnpm",
"npm": "forbidden, use pnpm",
"node": "^12.20 || ^14.13.1 || >= 16"
},
"pnpm": {
"overrides": {
"@svitejs/svelte-preprocess-svg": "workspace:*",
"ansi-regex@>2.1.1 <5.0.1": "^5.0.1"
}
}
}