-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "esbuild-plugin-transform",
"version": "0.5.0",
"packageManager": "pnpm@8.10.4",
"description": "Pipe transformation plugins for esbuild.",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"require": "./dist/index.d.ts",
"import": "./dist/index.d.mts"
},
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"test": "vitest",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@sxzz/eslint-config": "^3.7.4",
"@sxzz/prettier-config": "^1.0.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.9.0",
"bumpp": "^9.2.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-define-config": "^1.24.1",
"fast-glob": "^3.3.2",
"prettier": "^3.1.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=16.14.0"
},
"prettier": "@sxzz/prettier-config"
}