-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 KB
/
package.json
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": "oneprompt",
"type": "module",
"version": "1.1.1",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "A library that brings structure, validation, and reliability to prompt engineering.",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"test": "bun test ./tests/index.ts"
},
"files": [
"dist"
],
"keywords": [
"ai",
"llm",
"ml",
"genai",
"prompt",
"prompt engineering",
"openai"
],
"license": "MIT",
"author": "Vaibhav Acharya <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/VaibhavAcharya/oneprompt.git"
},
"homepage": "https://github.com/VaibhavAcharya/oneprompt",
"bugs": "https://github.com/VaibhavAcharya/oneprompt/issues",
"devDependencies": {
"@types/bun": "^1.1.10",
"bun-plugin-dts": "^0.3.0",
"prettier": "^3.3.3"
},
"dependencies": {
"fast-xml-parser": "^4.5.0"
}
}