-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.1 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.1 KB
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
77
78
79
80
81
82
83
84
{
"name": "vite-plugin-inline-source",
"version": "5.0.0",
"description": "A vite plugin for inlining files into HTML",
"files": [
"dist"
],
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"packageManager": "pnpm@11.0.8",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"type": "module",
"engines": {
"node": ">=22"
},
"keywords": [
"vite",
"plugin",
"markup",
"inline",
"css",
"svg"
],
"repository": {
"type": "git",
"url": "https://github.com/bienzaaron/vite-plugin-inline-source"
},
"bugs": {
"url": "https://github.com/bienzaaron/vite-plugin-inline-source/issues"
},
"homepage": "https://github.com/bienzaaron/vite-plugin-inline-source#readme",
"author": "Aaron Bienz <bienzaaronj@gmail.com>",
"license": "MIT",
"scripts": {
"pipeline": "pnpm lint && pnpm test && pnpm typecheck && pnpm build && pnpm lint:publish",
"typecheck": "tsc -p tsconfig.json",
"build": "tsdown",
"lint": "oxlint && oxfmt --check",
"lint:fix": "oxlint --fix --no-error-on-unmatched-pattern && oxfmt --write --no-error-on-unmatched-pattern",
"lint:publish": "publint",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"csso": "^5.0.5",
"esbuild": "^0.28.0",
"sass": "^1.99.0",
"svgo": "^4.0.1",
"terser": "^5.47.1",
"tslib": "^2.8.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/csso": "^5.0.4",
"@types/node": "^22.19.18",
"@vitest/coverage-v8": "^4.1.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"publint": "^0.3.19",
"rolldown": "^1.0.0",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vite": "^8.0.11",
"vitest": "^4.1.5"
},
"peerDependencies": {
"vite": "8.x"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,html}": [
"oxlint --fix --no-error-on-unmatched-pattern",
"oxfmt --write --no-error-on-unmatched-pattern"
]
}
}