-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "rollup-plugin-copy2",
"version": "0.4.0",
"description": "Rollup plugin to copy additional assets to the build directory.",
"homepage": "https://github.com/mentaljam/rollup-plugin-copy2",
"repository": {
"type": "git",
"url": "git+ssh://github.com/mentaljam/rollup-plugin-copy2"
},
"bugs": {
"url": "https://github.com/mentaljam/rollup-plugin-copy2/issues"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build:esm": "tsc -m es6",
"build:cjs": "tsc -m commonjs --outDir dist/cjs",
"build:types": "tsc -d --emitDeclarationOnly",
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "npm --prefix example run test"
},
"keywords": [
"rollup",
"plugin",
"copy"
],
"author": "Petr Tsymbarovich <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^18.16.0",
"rollup": "^3.20.7",
"typescript": "^5.0.4"
},
"peerDependencies": {
"rollup": ">=3.20.0"
},
"dependencies": {
"glob": "^10.2.2"
}
}