-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.51 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
64
65
66
67
68
{
"version": "2.1.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/xdoer/taro-inject-component-loader",
"bugs": {
"url": "https://github.com/xdoer/taro-inject-component-loader/issues",
"email": "gotoanything@foxmail.com"
},
"keywords": [
"taro",
"react",
"loader",
"webpack",
"inject"
],
"scripts": {
"start": "tsdx watch --format cjs",
"build": "tsdx build --format cjs",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build --format cjs",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"name": "taro-inject-component-loader",
"author": "xdoer",
"module": "dist/taro-inject-component-loader.esm.js",
"size-limit": [
{
"path": "dist/taro-inject-component-loader.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/taro-inject-component-loader.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.1",
"@types/loader-utils": "^2.0.1",
"@types/schema-utils": "^2.4.0",
"husky": "^4.3.6",
"size-limit": "^4.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}