-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
115 lines (115 loc) · 2.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@tldraw/signia-monorepo",
"private": true,
"description": "A tiny little state managment library (monorepo).",
"version": "0.0.0",
"author": "tldraw GB Ltd.",
"homepage": "https://tldraw.dev",
"repository": {
"type": "git",
"url": "https://github.com/tldraw/signia"
},
"bugs": {
"url": "https://github.com/tldraw/signia/issues"
},
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"build": "cross-env FORCE_COLOR=1 turbo run build --concurrency=1",
"build-docs": "./scripts/build-docs.sh",
"dev": "cross-env FORCE_COLOR=1 turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
"clean": "./scripts/clean.sh",
"test": "turbo run test --concurrency=1",
"deploy": "./scripts/deploy.sh",
"serve": "pnpm --filter docs serve",
"start-docs": "./scripts/start-docs.sh",
"deploy-docs": "pnpm --filter docs run deploy",
"check-api": "tsx ./scripts/check-api.ts",
"typecheck": "turbo run typecheck --concurrency=1"
},
"engines": {
"npm": ">=7.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint"
]
},
"devDependencies": {
"@auto-it/all-contributors": "^10.40.0",
"@microsoft/api-documenter": "^7.21.5",
"@microsoft/api-extractor": "^7.34.3",
"@swc/core": "^1.2.204",
"@swc/jest": "^0.2.21",
"@types/glob": "^8.0.1",
"@types/is-ci": "^3.0.0",
"@types/jest": "^29.4.0",
"@types/node": "18.7.3",
"@types/npmcli__arborist": "^5.6.1",
"@types/pacote": "^11.1.5",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@types/semver": "^7.3.13",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"auto": "^10.38.5",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.5",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "7.28.0",
"glob": "^8.1.0",
"gzip-size": "^7.0.0",
"is-ci": "^3.0.1",
"jest": "^29.4.1",
"kleur": "^4.1.5",
"lerna": "^6.4.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.1.2",
"semver": "^7.3.8",
"tsdoc-markdown": "^0.0.1",
"tsx": "^3.12.3",
"turbo": "^1.7.4",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "4.0.0-next.3",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.3",
"typescript": "^4.9.4"
},
"auto": {
"prereleaseBranches": [
"prerelease"
],
"plugins": [
[
"npm",
{
"subPackageChangelogs": true
}
],
"all-contributors"
]
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"typedoc": {
"displayName": "API"
}
}