-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.22 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
{
"name": "@jgoz/esbuild-plugins",
"private": true,
"author": "John Gozde <john@gozde.ca>",
"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.18.3"
},
"devDependencies": {
"@awesome-code-style/eslint-config": "^6.1.1",
"@awesome-code-style/prettier-config": "^5.0.1",
"@changesets/cli": "^2.29.7",
"@tsconfig/node16": "^16.1.6",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"esbuild": "^0.25.11",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"execa": "^5.0.0",
"globals": "^16.4.0",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"tslib": "^2.4.0",
"typedoc": "^0.25.13",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"tsconfig-paths@3.x": "^3.14.2",
"tslib@2.x": "^2.4.0",
"follow-redirects@<1.15.4": ">=1.15.4",
"follow-redirects@<=1.15.5": ">=1.15.6"
},
"onlyBuiltDependencies": [
"svelte-preprocess"
]
},
"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 run -r --if-present test",
"watch": "pnpm run -r --if-present --stream --parallel watch"
}
}