-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "@farmfe/js-plugin-copy",
"version": "0.0.4",
"description": "",
"main": "./build/cjs/index.cjs",
"types": "./build/esm/index.d.ts",
"type": "module",
"homepage": "https://github.com/farm-fe/plugins",
"author": "maidang1 <[email protected]>",
"bugs": {
"url": "https://github.com/farm-fe/plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farm-fe/plugins.git"
},
"keywords": [
"Rust",
"virtual",
"farmfe"
],
"exports": {
".": {
"default": "./build/esm/index.mjs",
"require": "./build/cjs/index.cjs",
"import": "./build/esm/index.mjs",
"types": "./build/esm/index.d.ts"
}
},
"scripts": {
"build:cjs": "cross-env FARM_FORMAT=cjs farm build",
"build": "farm build && npm run build:cjs",
"start": "farm watch",
"dev": "farm watch",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "^1.3.23",
"@farmfe/js-plugin-dts": "^0.6.4",
"@types/node": "^22.7.4",
"cross-env": "^7.0.3"
},
"files": [
"build"
],
"dependencies": {
"@types/fs-extra": "^11.0.4",
"colorette": "^2.0.20",
"fs-extra": "^11.2.0",
"globby": "^14.0.2"
}
}