-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.4 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
69
70
71
72
73
74
75
76
{
"private": true,
"name": "@svg-use/monorepo-root",
"version": "0.1.0",
"description": "Tools and bundler plugins for loading SVG images via use[href], for use in components.",
"license": "MIT",
"author": "Fotis Papadogeorgopoulos <[email protected]> (https://fotis.xyz)",
"repository": {
"type": "git",
"url": "https://github.com/fpapado/svg-use.git"
},
"bugs": {
"url": "https://github.com/fpapado/svg-use/issues"
},
"type": "module",
"scripts": {
"api-docs": "pnpm --recursive api-docs",
"build": "pnpm --recursive run build",
"changeset:release": "pnpm build && changeset tag && pnpm --recursive publish --access public",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"check-types": "pnpm --recursive run check-types",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm --recursive lint",
"prepare": "husky",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "pnpm --recursive test:e2e"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.3",
"@changesets/cli": "2.27.12",
"@eslint/js": "9.19.0",
"@playwright/test": "1.50.0",
"@tsconfig/node20": "20.1.4",
"@types/eslint__js": "8.42.3",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/eslint-plugin": "1.1.25",
"eslint": "9.19.0",
"eslint-plugin-tsdoc": "0.4.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"markdownlint-cli2": "0.17.2",
"npm-run-all2": "6.2.6",
"prettier": "3.4.2",
"prettier-package-json": "2.8.0",
"publint": "0.2.12",
"rimraf": "6.0.1",
"tshy": "3.0.2",
"typedoc": "0.27.6",
"typedoc-plugin-markdown": "4.4.1",
"typedoc-plugin-mdn-links": "4.0.10",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vitest": "2.1.8"
},
"keywords": [
"loader",
"performance",
"plugin",
"rollup",
"svg",
"vite",
"webpack"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,mts,cts}": "eslint --fix",
"!(.changeset)/*.md": "markdownlint-cli2 --fix",
"*": "prettier --write --ignore-unknown",
"package.json": "prettier-package-json --write"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}