-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "payload-ai",
"version": "1.0.3",
"homepage:": "https://polyxo.de",
"repository": "git@github.com:payloadcms/payload-plugin-template.git",
"description": "Payload AI tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"template"
],
"scripts": {
"build": "tsc && yarn copyfiles",
"test": "cd dev-v3 && yarn test",
"lint": "eslint src",
"yalc:deploy": "yarn build && yalc publish --push",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rimraf dist && rimraf dev-v3/yarn.lock",
"prepublishOnly": "yarn clean && yarn build && cd dev-v3",
"copyfiles": "copyfiles -u 1 \"./src/**/*/*.scss\" dist"
},
"author": "robert@wirewire.de",
"license": "MIT",
"peerDependencies": {
"payload": "^3.0.0"
},
"devDependencies": {
"@payloadcms/eslint-config": "^0.0.1",
"@payloadcms/ui": "^3.76.1",
"@faceless-ui/modal": "2.0.1",
"@swc/jest": "^0.2.28",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"payload": "^3.76.1",
"prettier": "^2.7.1",
"react": "^19.2.0",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.6.8",
"iso-639-1": "^3.1.2",
"next": "15.4.11",
"node-fetch": "^3.3.2",
"openai": "^4.46.1",
"react-dom": "^19.2.0",
"webpack": "^5.89.0"
}
}