-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.24 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.24 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "rollup-plugin-auto-entry",
"version": "2.0.2",
"publishConfig": {
"access": "public"
},
"description": "Allows creating grouped bundles",
"main": "dist/rollup-plugin-auto-entry.cjs.js",
"module": "dist/rollup-plugin-auto-entry.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:main",
"build:main": "rollup -c",
"prebuild": "rimraf dist",
"test": "ava",
"test:dev": "ava --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/impy88/rollup-plugin-auto-entry.git"
},
"author": "Maksim Kotelnikov <mail@maximkotelnikov.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/impy88/rollup-plugin-auto-entry/issues"
},
"homepage": "https://github.com/impy88/rollup-plugin-auto-entry#readme",
"keywords": [
"rollup-plugin",
"plugin",
"rollup",
"fesm",
"auto-entry",
"autoentry"
],
"dependencies": {
"micromatch": "~4.0.5"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0",
"fast-glob": "^2.0.0||^3.0.0||^4.0.0"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@ava/typescript": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/micromatch": "^4.0.1",
"@types/node": "^18.0.0",
"ava": "^6.1.3",
"esm": "^3.2.25",
"fast-glob": "^3.3.2",
"rimraf": "^5.0.2",
"rollup": "^4.17.0",
"ts-node": "^10.9.0",
"tslib": "~2.6.0",
"typescript": "~5.4.0"
},
"engines" : {
"node" : "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"ava": {
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "dist/"
}
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"require": [
"ts-node/register/transpile-only"
],
"watchMode": {
"ignoreChanges": [
"dist/**/*"
]
},
"files": [
"!**/fixtures/**"
]
},
"exports": {
"node": {
"module": "./dist/rollup-plugin-auto-entry.esm.js",
"require": "./dist/rollup-plugin-auto-entry.cjs.js"
},
"default": "./dist/rollup-plugin-auto-entry.cjs.js"
}
}