-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 3.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"scripts": {
"setup": "(npm run add:framework & npm run add:services & npm run add:vue & npm run add:astro && npm run add:mdx) && pnpm i",
"pnpm:devPreinstall": "npm run prepare:framework && npm run clean",
"prepare:framework": "cd framework && pnpm i && npm run build",
"add:framework": "git clone https://github.com/volarjs/volar.js.git framework",
"add:services": "git clone https://github.com/volarjs/services.git services",
"add:starter": "git clone https://github.com/volarjs/starter.git starter",
"add:vue": "git clone https://github.com/vuejs/language-tools.git vue",
"add:astro": "git clone https://github.com/withastro/language-tools.git astro",
"add:mdx": "git clone https://github.com/mdx-js/mdx-analyzer.git mdx",
"clean": "npm run clean:node_modules && npm run clean:tsbuildinfo",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:tsbuildinfo": "find . -name '*.tsbuildinfo' -type f -prune -exec rm -rf '{}' +",
"watch:framework": "cd framework && npm run watch",
"watch:services": "cd services && npm run watch",
"watch:starter": "cd starter && npm run watch",
"watch:vue": "cd vue && npm run watch:base",
"watch:astro": "cd astro && npm run dev",
"watch:mdx": "cd mdx && npm run test-types -- -w"
},
"pnpm": {
"overrides": {
"@volar/cdn": "file:./framework/packages/cdn",
"@volar/kit": "file:./framework/packages/kit",
"@volar/language-core": "file:./framework/packages/language-core",
"@volar/language-server": "file:./framework/packages/language-server",
"@volar/language-service": "file:./framework/packages/language-service",
"@volar/monaco": "file:./framework/packages/monaco",
"@volar/snapshot-document": "file:./framework/packages/snapshot-document",
"@volar/source-map": "file:./framework/packages/source-map",
"@volar/test-utils": "file:./framework/packages/test-utils",
"@volar/typescript": "file:./framework/packages/typescript",
"@volar/vscode": "file:./framework/packages/vscode",
"volar-service-css": "file:./services/packages/css",
"volar-service-emmet": "file:./services/packages/emmet",
"volar-service-eslint": "file:./services/packages/eslint",
"volar-service-html": "file:./services/packages/html",
"volar-service-json": "file:./services/packages/json",
"volar-service-prettier": "file:./services/packages/prettier",
"volar-service-pretty-ts-errors": "file:./services/packages/pretty-ts-errors",
"volar-service-prettyhtml": "file:./services/packages/prettyhtml",
"volar-service-pug": "file:./services/packages/pug",
"volar-service-pug-beautify": "file:./services/packages/pug-beautify",
"volar-service-sass-formatter": "file:./services/packages/sass-formatter",
"volar-service-tslint": "file:./services/packages/tslint",
"volar-service-typescript": "file:./services/packages/typescript",
"volar-service-typescript-twoslash-queries": "file:./services/packages/typescript-twoslash-queries",
"volar-service-vetur": "file:./services/packages/vetur"
}
}
}