forked from Deepractice/PromptML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.29 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.29 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
{
"name": "dpml-workspace",
"version": "0.0.1",
"description": "Deepractice Prompt Markup Language",
"private": true,
"type": "module",
"scripts": {
"prebuild": "pnpm lint ",
"build": "turbo run build",
"lint": "eslint . --config eslint.config.js --fix",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"docs": "npx typedoc --out docs/api",
"check-env": "node scripts/setup-env.js",
"create-changeset": "node scripts/create-empty-changeset.js",
"snapshot": "node scripts/create-empty-changeset.js && pnpm changeset version --snapshot ci-$(date +%Y%m%d%H%M%S) && pnpm build && pnpm changeset publish --tag snapshot --no-git-tag"
},
"keywords": [
"dpml",
"prompt",
"llm",
"ai"
],
"author": "Deepractice",
"license": "MIT",
"packageManager": "pnpm@10.7.0",
"volta": {
"node": "22.14.0",
"pnpm": "10.7.0"
},
"engines": {
"node": ">=20.0.0 <23.0.0",
"pnpm": ">=10.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@eslint/js": "^9.24.0",
"@swc-node/register": "^1.10.10",
"@swc/core": "^1.11.18",
"@type-challenges/utils": "^0.1.1",
"@types/chai": "^5.2.1",
"@types/lodash": "^4.17.16",
"@types/node": "^22.14.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "8.29.0",
"@typescript-eslint/parser": "8.29.0",
"@vitest/coverage-v8": "^3.1.1",
"barrelsby": "^2.8.1",
"chai": "^5.2.0",
"chalk": "^5.3.0",
"chokidar-cli": "^3.0.0",
"dotenv": "^16.5.0",
"eslint": "9.23.0",
"eslint-config-prettier": "10.1.1",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^58.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"execa": "^9.5.2",
"prettier": "3.5.3",
"read-package-up": "^11.0.0",
"reflect-metadata": "^0.2.0",
"serve": "^14.2.2",
"semver": "^7.5.4",
"strip-ansi": "^7.1.0",
"ts-auto-mock": "^3.6.2",
"tsup": "8.4.0",
"ttypescript": "^1.5.15",
"turbo": "2.4.4",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.2",
"typescript": "5.8.2",
"typescript-eslint": "^8.30.1",
"vitest": "^3.1.1"
}
}