forked from mrwogu/promptscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.15 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.15 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": "@promptscript/source",
"version": "0.0.0",
"license": "MIT",
"homepage": "https://getpromptscript.dev/",
"scripts": {
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"test": "nx run-many -t test",
"format": "nx format:write",
"format:check": "nx format:check",
"typecheck": "pnpm nx run-many -t typecheck",
"schema:generate": "ts-node --esm scripts/generate-schema.mts",
"schema:check": "./scripts/check-schema.sh",
"docs:serve": "PYTHONPATH=. mkdocs serve",
"docs:build": "PYTHONPATH=. mkdocs build --strict",
"docs:generate": "typedoc",
"playground:serve": "nx serve playground",
"playground:links": "ts-node --esm scripts/add-playground-links.mts",
"docs:validate": "node --import @swc-node/register/esm-register scripts/validate-docs-examples.mts",
"docs:validate:check": "node --import @swc-node/register/esm-register scripts/validate-docs-examples.mts --check",
"prs": "node --import @swc-node/register/esm-register packages/cli/src/cli.ts",
"prepare": "husky"
},
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.3",
"@nx/esbuild": "22.5.1",
"@nx/eslint": "22.5.1",
"@nx/eslint-plugin": "22.5.1",
"@nx/js": "22.5.1",
"@nx/vite": "22.5.1",
"@nx/vitest": "22.5.1",
"@swc-node/register": "~1.11.1",
"@swc/cli": "~0.8.0",
"@swc/core": "~1.15.11",
"@swc/helpers": "~0.5.19",
"@types/node": "25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.1.0",
"lz-string": "^1.5.0",
"nx": "22.5.1",
"path-browserify": "^1.0.1",
"prettier": "~3.8.1",
"ts-json-schema-generator": "^2.5.0",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "~5.9.3",
"verdaccio": "^6.2.5",
"vite": "^7.0.0",
"vitest": "^4.0.18"
},
"nx": {
"includedScripts": []
}
}