-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 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
{
"name": "@bosh-code/tsdown-plugin-inject-css",
"description": "Import your bundled .css files into libraries built with tsdown",
"version": "2.0.0",
"author": "Ryan Bosher <ryan@bosher.co.nz>",
"bugs": "https://github.com/bosh-code/tsdown-plugin-inject-css/issues",
"contributors": [
{
"name": "Ryan Bosher",
"email": "ryan@bosher.co.nz",
"url": "https://bosher.co.nz"
}
],
"dependencies": {
"@ast-grep/napi": "^0.39.6"
},
"devDependencies": {
"@bosh-code/eslint-plugin": "^1.1.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/prompt-cli": "^20.1.0",
"@types/node": "^24.7.0",
"eslint": "^9.37.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"rolldown": "^1.0.0-beta.42",
"safe-publish-latest": "^2.0.0",
"tsdown": "^0.15.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/bosh-code/tsdown-plugin-inject-css",
"keywords": [
"bundle",
"bundling",
"component-library",
"css",
"rolldown",
"rolldown-plugin",
"tsdown",
"tsdown-plugin"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"packageManager": "pnpm@10.16.1",
"peerDependencies": {
"tsdown": ">=0.10.0"
},
"private": false,
"repository": "bosh-code/tsdown-plugin-inject-css.git",
"scripts": {
"build": "tsdown",
"lint": "eslint .",
"prepublishOnly": "run-s safe-publish-latest build lint",
"safe-publish-latest": "safe-publish-latest",
"typecheck": "tsc --noEmit"
},
"type": "module",
"types": "./dist/index.d.ts"
}