-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 2.08 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
{
"name": "@jgoz/esbuild-plugins",
"private": true,
"author": "John Gozde <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jgoz/esbuild-plugins#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jgoz/esbuild-plugins.git"
},
"bugs": {
"url": "https://github.com/jgoz/esbuild-plugins/issues"
},
"volta": {
"node": "20.13.1"
},
"devDependencies": {
"@awesome-code-style/eslint-config": "^5.1.0",
"@awesome-code-style/prettier-config": "^5.0.0",
"@changesets/cli": "^2.27.9",
"@tsconfig/node16": "^16.1.3",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"esbuild": "^0.24.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"execa": "^5.0.0",
"prettier": "^3.2.5",
"tslib": "^2.8.0",
"typedoc": "^0.25.13",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"[email protected]": "^3.14.2",
"[email protected]": "^2.4.0",
"follow-redirects@<1.15.4": ">=1.15.4",
"follow-redirects@<=1.15.5": ">=1.15.6"
}
},
"scripts": {
"build": "tsc -b && pnpm run -r --if-present prepack",
"changeset:version": "changeset version && pnpm i --lockfile-only",
"clobber": "rm -rf node_modules packages/*/{dist,lib,node_modules} **/*.tsbuildinfo",
"docker:build": "docker build -t esbuild-plugins-tests .",
"docker:run": "docker run -it --rm --ipc=host -v $(pwd)/packages/esbd/test:/app/packages/esbd/test -v $(pwd)/packages/esbuild-plugin-livereload/test:/app/packages/esbuild-plugin-livereload/test esbuild-plugins-tests",
"docs": "pnpm run -r --if-present docs",
"lint": "eslint \"packages/**/*.ts\"",
"node-check": "node -v && arch",
"prepare": "tsc -b",
"release": "pnpm publish -r --filter=\"@jgoz/*\" --filter=\"esbd\" --filter=\"!@jgoz/esbuild-plugins\"",
"test": "pnpm test -r",
"watch": "pnpm run -r --if-present --stream --parallel watch"
}
}