-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
59
60
{
"name": "@linjiajian999/esbuild-plugin-import",
"version": "1.0.2",
"private": false,
"description": "Modularly import plugin for esbuild.",
"keywords": [
"esbuild",
"esbuild-plugin-import",
"babel-plugin-import",
"import"
],
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc",
"dev": "tsc -w",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linjiajian999/esbuild-plugin-import.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/linjiajian999/esbuild-plugin-import/issues"
},
"homepage": "https://github.com/linjiajian999/esbuild-plugin-import#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"antd": "^4.16.7",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"lodash": "^4.17.21",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"esbuild": "^0.12.15",
"fs-extra": "^10.0.0"
}
}