-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.45 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.45 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
{
"name": "omniscript-core",
"version": "1.3.0",
"description": "OmniScript Format (OSF) - universal document DSL for LLMs, agentic AI, and Git-native workflows",
"private": true,
"type": "commonjs",
"engines": {
"node": ">=22.20.0",
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.0",
"workspaces": [
"parser",
"cli"
],
"scripts": {
"build": "bun run build:parser && bun run build:cli",
"build:parser": "cd parser && bun run build",
"build:cli": "cd cli && bun run build",
"clean": "rimraf parser/dist cli/dist coverage",
"dev": "bun run build --watch",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"format:all": "bun run format && bun run lint",
"lint": "eslint . --ext .ts,.js --fix",
"lint:check": "eslint . --ext .ts,.js",
"prepare": "husky",
"pretest": "bun run build",
"release": "pwsh scripts/release.ps1",
"release:patch": "pwsh scripts/release.ps1 patch",
"release:minor": "pwsh scripts/release.ps1 minor",
"release:major": "pwsh scripts/release.ps1 major",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "bun run build:parser && cd parser && bun run typecheck && cd ../cli && bun run typecheck"
},
"keywords": [
"document",
"dsl",
"llm",
"ai",
"osf",
"omniscript",
"parser",
"markdown",
"slides",
"spreadsheet"
],
"author": "Alphin Tom <alpha912@github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OmniScriptOSF/omniscript-core.git"
},
"bugs": {
"url": "https://github.com/OmniScriptOSF/omniscript-core/issues"
},
"homepage": "https://github.com/OmniScriptOSF/omniscript-core#readme",
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix"
]
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "24.8.1",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitest/coverage-v8": "4.0.16",
"eslint": "^9.38.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"semver": "^7.7.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "4.0.16"
}
}