This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@paperclip-ui/workspaces",
"version": "18.0.3",
"displayName": "Paperclip",
"description": "Paperclip tooling for VS Code",
"private": true,
"main": "index.js",
"directories": {
"doc": "docs"
},
"engines": {
"yarn": "^1.22.17"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"**/@docusaurus",
"**/@docusaurus/**",
"**/jest",
"**/jest/**",
"**/mocha",
"**/mocha/**",
"**/@testing-library/jest-dom/**",
"**/@testing-library/jest-dom"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"codecov": "^3.7.1",
"eslint": "^7.4.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"prettier": "2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.2.3"
},
"resolutions": {
"vscode-languageserver-protocol": "3.15.3"
},
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"lint": "lerna run lint",
"link": "lerna run link",
"clean": "find ./ -name node_modules -exec rm -rf {} \\;",
"clean:hard": "rm -rf yarn.lock && yarn clean",
"build:watch": "lerna run build:watch --parallel",
"publish:packages": "lerna publish from-package --yes",
"publish:marketplace": "lerna run publish:marketplace",
"publish:documentation": "lerna run publish:documentation",
"version22": "lerna clean --yes && lerna bootstrap --ignore-scripts -- --no-audit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paperclipui/paperclip.git"
},
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/paperclipui/paperclip/issues"
},
"homepage": "https://github.com/paperclipui/paperclip#readme",
"packageManager": "yarn@1.22.17"
}