-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.3 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
92
93
94
95
{
"name": "rcl-workspace",
"description": "Base workspace package",
"version": "0.0.1",
"private": true,
"type": "module",
"infra": "monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "bun run --filter '*' clean",
"dev": "concurrently -k -n tmt,lang,ext,cli -c red,blue,yellow,green \"nr dev:tmt\" \"nr dev:lang\" \"nr dev:ext\" \"nr dev:cli\"",
"dev:tmt": "(cd packages/tmgrammar-toolkit && bun run dev)",
"dev:lang": "(cd packages/language && bun run dev)",
"dev:ext": "(cd packages/extension && bun run dev)",
"dev:cli": "(cd packages/cli && bun run dev)",
"build": "tsc -b tsconfig.build.json && nr build:tmt && nr build:lang && nr build:ext && nr build:cli",
"build:tmt": "cd packages/tmgrammar-toolkit && bun run build",
"build:lang": "cd packages/language && bun run build",
"build:ext": "cd packages/extension && bun run build",
"build:cli": "cd packages/cli && bun run build",
"build:clean": "bun run clean && bun run build",
"cli": "bun packages/cli/bin/cli.js",
"langium:generate": "cd packages/language && bun run langium:generate",
"langium:watch": "cd packages/language && bun run langium:watch",
"vscode:watch": "cd packages/extension && bun run watch",
"test": "cd packages/language && bun run test",
"reinstall": "bun --filter='rcl-language' run langium:generate && bun --filter='vscode-rcl' run reinstall-extension",
"----": "----- The scripts below are from packemon and should replace the ones above in the future -----",
"pkm:build": "packemon build-workspace",
"pkm:check": "yarn run type && yarn run test && yarn run lint",
"pkm:coverage": "yarn run test --coverage",
"pkm:format": "prettier --write ./packages",
"pkm:lint": "eslint --cache --fix ./packages",
"pkm:pack": "packemon pack-workspace --addEngines --declaration",
"pkm:prelease": "yarn run pack && yarn run check",
"pkm:release": "echo 'Customize your own release script!'",
"pkm:test": "vitest",
"pkm:type": "tsc --build"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@moonrepo/cli": "1.38.0",
"husky": "9.1.5",
"lint-staged": "15.2.7",
"rcl-cli": "workspace:*",
"rcl-language": "workspace:*",
"ts-toolbelt": "9.6.0",
"tsconfig-moon": "^1.4.0",
"tsx": "4.16.2",
"typescript": "5.5.4",
"vitest": "2.0.5"
},
"volta": {
"bun": "1.2"
},
"dependencies": {
"onigasm": "^2.2.5",
"plist": "^3.1.0",
"vscode-tmgrammar-test": "^0.1.3"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./terminals": {
"import": "./dist/terminals/index.js",
"types": "./dist/terminals/index.d.ts"
},
"./terminals/*": {
"import": "./dist/terminals/*.js",
"types": "./dist/terminals/*.d.ts"
},
"./testing": {
"import": "./dist/testing/index.js",
"types": "./dist/testing/index.d.ts"
},
"./validation": {
"import": "./dist/validation/index.js",
"types": "./dist/validation/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
}
},
"packageManager": "bun@1.2.17",
"engines": {
"bun": ">=1.2.17"
}
}