create-payload-app 3.0.0-beta.17 → 3.0.0-beta.19
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +16 -16
package/package.json
CHANGED
@@ -1,17 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-payload-app",
|
3
|
-
"version": "3.0.0-beta.
|
4
|
-
"license": "MIT",
|
5
|
-
"type": "module",
|
3
|
+
"version": "3.0.0-beta.19",
|
6
4
|
"homepage": "https://payloadcms.com",
|
7
|
-
"bin": {
|
8
|
-
"create-payload-app": "bin/cli.js"
|
9
|
-
},
|
10
5
|
"repository": {
|
11
6
|
"type": "git",
|
12
7
|
"url": "https://github.com/payloadcms/payload.git",
|
13
8
|
"directory": "packages/create-payload-app"
|
14
9
|
},
|
10
|
+
"license": "MIT",
|
11
|
+
"type": "module",
|
12
|
+
"exports": {
|
13
|
+
"./commands": {
|
14
|
+
"import": "./src/lib/init-next.ts",
|
15
|
+
"require": "./src/lib/init-next.ts",
|
16
|
+
"types": "./src/lib/init-next.ts"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"bin": {
|
20
|
+
"create-payload-app": "bin/cli.js"
|
21
|
+
},
|
15
22
|
"files": [
|
16
23
|
"package.json",
|
17
24
|
"dist",
|
@@ -41,19 +48,12 @@
|
|
41
48
|
"@types/jest": "^27.0.3",
|
42
49
|
"@types/node": "20.12.5"
|
43
50
|
},
|
44
|
-
"exports": {
|
45
|
-
"./commands": {
|
46
|
-
"import": "./src/lib/init-next.ts",
|
47
|
-
"require": "./src/lib/init-next.ts",
|
48
|
-
"types": "./src/lib/init-next.ts"
|
49
|
-
}
|
50
|
-
},
|
51
51
|
"scripts": {
|
52
52
|
"build": "pnpm pack-template-files && pnpm typecheck && pnpm build:swc",
|
53
|
-
"typecheck": "tsc",
|
54
|
-
"pack-template-files": "tsx src/scripts/pack-template-files.ts",
|
55
53
|
"build:swc": "swc ./src -d ./dist --config-file .swcrc",
|
56
54
|
"clean": "rimraf {dist,*.tsbuildinfo}",
|
57
|
-
"
|
55
|
+
"pack-template-files": "tsx src/scripts/pack-template-files.ts",
|
56
|
+
"test": "jest",
|
57
|
+
"typecheck": "tsc"
|
58
58
|
}
|
59
59
|
}
|