-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.22 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
{
"name": "marko-language-server-repo",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.17.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"esbuild": "^0.24.0",
"eslint": "^9.17.0",
"eslint-formatter-unix": "^8.40.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fast-glob": "^3.3.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"mocha": "^11.0.1",
"mocha-snap": "^5.0.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"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 unix --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/*"
]
}