-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
87 lines (87 loc) · 2.03 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@laynezh/vite-plugin-lib-assets",
"type": "module",
"version": "0.5.25",
"packageManager": "pnpm@8.6.2",
"description": "A Vite Plugin extracts resource files referenced in library mode instead of embedded them as base64.",
"license": "MIT",
"homepage": "https://github.com/laynezh/vite-plugin-lib-assets#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/laynezh/vite-plugin-lib-assets.git"
},
"bugs": {
"url": "https://github.com/laynezh/vite-plugin-lib-assets/issues"
},
"keywords": [
"vite-plugin",
"vite",
"generate lib assets"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint .",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"escape-string-regexp": "^4.0.0",
"loader-utils": "^3.2.1",
"mrmime": "^1.0.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@types/loader-utils": "^2.0.3",
"@types/node": "^18.16.16",
"bumpp": "^9.1.0",
"chalk": "^5.2.0",
"eslint": "^8.42.0",
"esno": "^4.7.0",
"fast-glob": "^3.2.12",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"tsup": "^8.0.1",
"typescript": "^5.1.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"volta": {
"node": "18.16.1",
"pnpm": "8.6.2"
}
}