-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.31 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "root",
"private": true,
"description": "DPML-powered AI prompt framework - Revolutionary AI-First CLI system based on Deepractice Prompt Markup Language. Build sophisticated AI agents with structured prompts, memory systems, and execution frameworks.",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"clean": "turbo clean",
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:status": "changeset status",
"prepare": "npx lefthook install",
"postinstall": "pnpm rebuild better-sqlite3 || true"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@evilmartians/lefthook": "^1.12.3",
"@types/node": "^22.19.11",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"electron": "38.0.0",
"eslint": "^8.57.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=6.0.0"
},
"keywords": [
"dpml",
"deepractice",
"ai",
"prompt",
"prompt-engineering",
"markup-language",
"ai-first",
"cli",
"chatgpt",
"claude",
"conversation",
"agent",
"framework",
"role-playing",
"memory-system",
"automation"
],
"packageManager": "pnpm@10.14.0",
"author": {
"name": "Deepractice",
"email": "sean@deepracticex.com",
"url": "https://deepractice.ai"
},
"license": "MIT",
"homepage": "https://github.com/Deepractice/PromptX#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Deepractice/PromptX.git"
},
"bugs": {
"url": "https://github.com/Deepractice/PromptX/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"pnpm": {
"overrides": {
"tar": "^7.4.3",
"qs": "^6.13.1",
"@isaacs/brace-expansion": "^5.0.1",
"form-data": "^4.0.1",
"lodash": "^4.17.21",
"tough-cookie": "^5.0.0"
}
},
"dependencies": {
"@rolexjs/genesis": "1.3.0"
}
}