-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "@svg-use/vite",
"version": "0.1.3",
"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",
"directory": "packages/vite"
},
"bugs": {
"url": "https://github.com/fpapado/svg-use/issues"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json",
"./client": "./client.d.ts"
},
"files": [
"client.d.ts",
"dist/**/*",
"!dist/**/*.tsbuildinfo"
],
"scripts": {
"build": "pnpm build:lib",
"build:lib": "tsc -p tsconfig.build.json --noCheck",
"build:lib:watch": "tsc --watch -p tsconfig.build.json",
"check-types": "tsc --noEmit",
"check-types:watch": "tsc --noEmit --watch",
"dev": "npm-run-all --parallel build:lib:watch test",
"lint": "npm-run-all \"lint:*\"",
"lint:prettier": "pnpm prettier --check .",
"lint:scripts": "eslint src --report-unused-disable-directives --no-warn-ignored --max-warnings 0",
"prepublishOnly": "pnpm build && publint && attw --config-path ./.attw.json --pack",
"test": "vitest --pass-with-no-tests"
},
"dependencies": {
"@svg-use/react": "workspace:^0.4.0",
"@svg-use/rollup": "workspace:^0.4.1"
},
"devDependencies": {
"@types/node": "20.17.10",
"vite": "5.4.11"
},
"keywords": [
"performance",
"plugin",
"svg",
"vite",
"vite-plugin"
]
}