-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
25 lines (25 loc) · 920 Bytes
/
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
{
"name": "@qualified/lsps",
"private": true,
"homepage": "https://github.com/qualified/lsps#readme",
"repository": "https://github.com/qualified/lsps",
"bugs": "https://github.com/qualified/lsps/issues",
"scripts": {
"changeset-version": "changeset version && pnpm install --frozen-lockfile=false",
"test": "pnpm multi test",
"prepare": "husky install && pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --build packages",
"clean:cjs": "tsc --build --clean packages",
"watch:cjs": "tsc --build --watch packages",
"build:esm": "tsc --build packages/tsconfig-esm.json",
"clean:esm": "tsc --build --clean packages/tsconfig-esm.json",
"watch:esm": "tsc --build --watch packages/tsconfig-esm.json"
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.7.4"
}
}