-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
73 lines (73 loc) · 1.7 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
{
"name": "vite-plugin-singlefile",
"version": "2.0.3",
"description": "Vite plugin for inlining all JavaScript and CSS resources",
"main": "dist/cjs/index.js",
"type": "module",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/esm/declarations/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"typings": "dist/esm/declarations/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">18.0.0"
},
"scripts": {
"dev": "rimraf dist && tsc -w -p tsconfig.json",
"prepare": "npm run build",
"build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node fixup.cjs",
"test": "vitest",
"test:watch": "vitest watch",
"lint": "eslint src/index.ts"
},
"keywords": [
"vite",
"inline",
"css",
"SFA",
"single-file"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/richardtallent/vite-plugin-singlefile"
},
"bugs": {
"url": "https://github.com/richardtallent/vite-plugin-singlefile/issues"
},
"homepage": "https://github.com/richardtallent/vite-plugin-singlefile/tree/main/#readme",
"dependencies": {
"micromatch": "^4.0.8"
},
"peerDependencies": {
"rollup": "^4.24.3",
"vite": "^5.4.10"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"vitest": "^2.1.4",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5",
"printWidth": 180
}
}