@websolutespa/payload-plugin-bowl 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@websolutespa/payload-plugin-bowl",
3
+ "version": "0.0.1",
4
+ "description": "Bowl PayloadCms plugin of the BOM Repository",
5
+ "keywords": [
6
+ "payload",
7
+ "plugin",
8
+ "bom",
9
+ "bowl"
10
+ ],
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git://github.com/websolutespa/bom.git"
15
+ },
16
+ "scripts": {
17
+ "lint": "eslint *.ts*",
18
+ "test": "jest",
19
+ "test-watch": "npm test -- --watch",
20
+ "coverage:integration": "npm run test -- --coverage",
21
+ "coverage": "run-s -c --silent coverage:*",
22
+ "compile": "tsup ./src/index.ts --format cjs --dts --external react",
23
+ "prepack": "bom prepack",
24
+ "postpack": "bom postpack"
25
+ },
26
+ "dependencies": {},
27
+ "peerDependencies": {
28
+ "axios": "0.27.2",
29
+ "payload": "^1.2.1",
30
+ "react": "^18.2.0",
31
+ "i18next": "^22.4.9"
32
+ },
33
+ "devDependencies": {
34
+ "@types/escape-html": "^1.0.2",
35
+ "@types/express": "^4.17.15",
36
+ "@websolutespa/bom-cli": "*",
37
+ "@websolutespa/test": "*",
38
+ "@websolutespa/tsconfig": "*",
39
+ "axios": "0.27.2",
40
+ "esbuild-sass-plugin": "^2.6.0",
41
+ "eslint": "^8.23.0",
42
+ "eslint-config-websolute": "*",
43
+ "i18next": "^22.4.9",
44
+ "payload": "^1.2.1",
45
+ "react": "^18.0.0",
46
+ "ts-node": "^10.9.1",
47
+ "tsup": "^6.6.3",
48
+ "typescript": "^4.8.2"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public"
52
+ },
53
+ "sideEffects": false,
54
+ "prepack": {
55
+ "types": "./dist/index.d.ts",
56
+ "main": "./dist/index.js"
57
+ },
58
+ "postpack": {
59
+ "types": "./src/index.ts",
60
+ "main": "./src/index.ts"
61
+ },
62
+ "types": "./dist/index.d.ts",
63
+ "main": "./dist/index.js"
64
+ }