-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.61 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.61 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
{
"name": "@elizaos/prompts",
"private": false,
"version": "2.0.0-beta.0",
"description": "Shared prompt templates for elizaOS across TypeScript, Python, and Rust",
"type": "module",
"main": "./dist/typescript/index.ts",
"types": "./dist/typescript/index.ts",
"exports": {
".": {
"types": "./dist/typescript/index.ts",
"import": "./dist/typescript/index.ts"
},
"./python": "./dist/python/prompts.py",
"./rust": "./dist/rust/prompts.rs"
},
"scripts": {
"build": "node scripts/generate.js && node scripts/generate-plugin-action-spec.js && bunx @biomejs/biome format --write specs/actions/plugins.generated.json && node scripts/generate-action-docs.js",
"build:typescript": "node scripts/generate.js --target typescript",
"build:python": "node scripts/generate.js --target python",
"build:rust": "node scripts/generate.js --target rust",
"build:action-docs": "node scripts/generate-action-docs.js",
"build:plugin-action-spec": "node scripts/generate-plugin-action-spec.js && bunx @biomejs/biome format --write specs/actions/plugins.generated.json",
"check:secrets": "node scripts/check-secrets.js",
"clean": "rm -rf dist",
"lint": "bunx @biomejs/biome check --write .",
"lint:check": "bunx @biomejs/biome check .",
"typecheck": "echo 'No TypeScript source files to check'"
},
"files": [
"prompts/",
"dist/",
"scripts/"
],
"keywords": [
"elizaos",
"prompts",
"templates",
"ai",
"llm"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"gitHead": "cb192f7b21c441e9463d1af2f890c145814baad2"
}