-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "@codingame/esbuild-import-meta-url-plugin",
"version": "0.0.0-semantic-release",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Esbuild plugin allowing to use t he `new URL(..., import.meta.url)` syntax",
"type": "module",
"module": "dist/esbuildImportMetaUrlPlugin.js",
"main": "dist/esbuildImportMetaUrlPlugin.js",
"types": "dist/esbuildImportMetaUrlPlugin.d.ts",
"scripts": {
"build": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CodinGame/esbuild-import-meta-url-plugin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodinGame/esbuild-import-meta-url-plugin/issues"
},
"homepage": "https://github.com/CodinGame/esbuild-import-meta-url-plugin#readme",
"devDependencies": {
"@codingame/commitlint-config-codingame": "^1.0.7",
"@codingame/semantic-release-config": "^1.3.4",
"@codingame/tsconfig": "^1.1.1",
"@commitlint/cli": "^18.6.0",
"@types/node": "^20.11.7",
"typescript": "^5.3.3"
},
"dependencies": {
"esbuild": ">=0.19.x",
"import-meta-resolve": "^4.0.0"
},
"volta": {
"node": "20.11.0",
"npm": "10.4.0"
}
}