-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 KB
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
{
"name": "web-builder-plugins",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"buildPackages": "pnpm -r --filter \"@webspatial/*\" run build",
"setup": "pnpm install && npm run buildPackages",
"watchNPM": "concurrently \"cd core/ && npm run start\" \"cd react/ && npm run start\"",
"test": "concurrently \"pnpm -r --filter '@webspatial/*' run test\" ",
"format": "pnpm -r run format",
"ci:publish": "changeset publish",
"changeset": "changeset",
"changeset:pre-enter": "changeset pre enter alpha",
"changeset:pre-exit": "changeset pre exit alpha"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,json,ts}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/webspatial/web-builder-plugins.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/webspatial/web-builder-plugins/issues"
},
"homepage": "https://github.com/webspatial/web-builder-plugins#readme",
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@vitest/coverage-v8": "^3.0.9",
"concurrently": "^8.2.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3",
"vitest": "^3.0.9"
},
"packageManager": "pnpm@9.0.0",
"pnpm": {
"overrides": {
"react@>=0.0.1 <0.14.0": ">=0.14.0",
"cli@<1.0.0": ">=1.0.0",
"esbuild@<=0.24.2": ">=0.25.0",
"prismjs@<1.30.0": ">=1.30.0",
"@babel/runtime@<7.26.10": ">=7.26.10",
"@babel/helpers@<7.26.10": ">=7.26.10",
"vite@>=6.2.0 <6.2.3": ">=6.2.3",
"vite@>=6.2.0 <6.2.4": ">=6.2.4"
}
}
}