-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.06 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
{
"name": "@herb-tools/source",
"version": "0.0.0",
"license": "MIT",
"private": true,
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues",
"repository": {
"type": "git",
"url": "https://github.com/marcoroth/herb.git"
},
"devDependencies": {
"@jothepro/doxygen-awesome-css": "https://github.com/jothepro/doxygen-awesome-css#v2.4.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@vitest/browser-playwright": "^4.0.0",
"@vitest/ui": "^4.0.0",
"concurrently": "^9.2.0",
"dedent": "^1.7.0",
"esbuild-plugin-copy": "^2.1.1",
"nx": "22.4.4",
"oxlint": "^1.51.0",
"picomatch": "^4.0.2",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-postcss": "^4.0.2",
"tsx": "^4.20.4",
"typescript": "^6.0.1-rc",
"vitest": "^4.0.0",
"yaml": "^2.8.2",
"yeoman-environment": "^4.4.1",
"yeoman-generator": "^8.0.2"
},
"scripts": {
"dev": "nx run-many -t dev --all --parallel --exclude=herb-language-server",
"build": "nx run-many -t build --all --exclude=herb-language-server",
"build:affected": "nx affected -t build --exclude=herb-language-server",
"test": "nx run-many -t test --all --parallel --exclude=herb-language-server",
"test:affected": "nx affected -t test --exclude=herb-language-server",
"clean": "nx run-many -t clean --all --parallel && nx reset",
"playground": "nx run playground:dev",
"docs": "nx dev docs",
"lint": "yarn prettier '**/*.{js,mjs,cjs,ts,mts,cts,css,html}' --check",
"lint:oxc": "oxlint javascript/packages/",
"lint:oxc:fix": "oxlint --fix javascript/packages/",
"format": "yarn prettier '**/*.{js,mjs,cjs,ts,mts,cts,css,html}' --write",
"release": "tsx javascript/tools/scripts/release.ts"
},
"workspaces": [
"javascript/packages/*",
"playground",
"docs"
],
"nx": {
"includedScripts": []
}
}