-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.04 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.04 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
{
"name": "rollup-plugin-conditional-exec",
"version": "2.8.0",
"author": "Alex Miller <codex.nz@gmail.com>",
"description": "Execute a given command after a bundle has been written",
"type": "module",
"homepage": "https://github.com/Codex-/rollup-plugin-conditional-exec#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Codex-/rollup-plugin-conditional-exec.git"
},
"bugs": {
"url": "https://github.com/Codex-/rollup-plugin-conditional-exec/issues"
},
"license": "MIT",
"keywords": [
"rollup",
"plugin",
"conditional-exec",
"exec"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
}
},
"scripts": {
"build": "pnpm run build:types && pnpm run build:bundles",
"build:bundles": "node ./esbuild.config.mjs",
"build:types": "tsc -p tsconfig.build.json",
"check:types": "tsc -p tsconfig.json",
"format:check": "prettier --check \"{**/*,*}.{js,ts}\"",
"format": "pnpm run format:check --write",
"lint": "eslint --ext \".js,.ts\" .",
"release": "release-it",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"files": [
"dist/**/*"
],
"peerDependencies": {
"rollup": "^4.x"
},
"devDependencies": {
"@types/node": "^24.11.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^3.2.4",
"chalk": "^5.6.2",
"esbuild": "^0.27.3",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"rollup": "^4.59.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}