forked from godaddy/radpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 971 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 971 Bytes
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
{
"name": "@radpack/build",
"version": "1.0.7",
"description": "Rapid Application Development Packaging Build Core",
"main": "./lib/index.js",
"module": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src/",
"lib/"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "babel src -d lib"
},
"homepage": "https://github.com/godaddy/radpack/tree/main/packages/build#readme",
"repository": {
"type": "git",
"url": "https://github.com/godaddy/radpack.git",
"directory": "packages/build"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@radpack/core": "^1"
},
"dependencies": {
"find-up": "^5.0.0",
"semver": "^7.6.2"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@radpack/core": "^1.0.7",
"rimraf": "^3.0.2"
},
"license": "MIT"
}