-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.59 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.59 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
{
"name": "marko-language-server-repo",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:lint": "npm run lint",
"@ci:release": "npm run build && changeset publish && npm run --ws --if-present release && npm ci",
"@ci:test": "npm test",
"@ci:version": "npm run build && npm run format && changeset version && npm i --package-lock-only",
"build": "tsc -b && NODE_ENV=production npm run --ws build",
"build:dev": "tsx ./packages/vscode/build.mts",
"change": "changeset add",
"format": "eslint --fix .; prettier . --write --log-level=warn",
"lint": "eslint . && prettier . --check --log-level=warn && cspell --quiet",
"prepare": "husky & npm run --ws --if-present prepare",
"test": "npm run build && npm run --ws --if-present test",
"test:server": "npm run build -w @marko/language-tools -w @marko/language-server && npm run test -w @marko/language-server -- --update"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"cspell": "^10.0.0",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"fast-glob": "^3.3.3",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mocha": "^11.7.5",
"mocha-snap": "^5.0.1",
"prettier": "^3.8.3",
"prettier-plugin-packagejson": "^3.0.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
}
}