-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.29 KB
/
package.json
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
{
"name": "marko-language-server-repo",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "^0.24.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"fast-glob": "^3.3.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"mocha-snap": "^5.0.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"private": true,
"scripts": {
"build": "NODE_ENV=production npm run -ws build",
"build:dev": "tsx ./packages/vscode/build.mts",
"change": "npm exec changeset add",
"format": "npm run build && eslint -f visualstudio --fix . && prettier \"./**/*{.ts,.js,.json,.md,.yml,rc}\" --write",
"prepare": "husky & npm run -ws --if-present prepare",
"release": "npm run build && changeset publish && npm run -ws --if-present release",
"test": "npm run build && npm run -ws --if-present test",
"version": "changeset version && npm i --package-lock-only"
},
"workspaces": [
"./packages/*"
]
}