-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "gl-layer",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "turbo run clean",
"dev": "turbo run dev",
"build": "turbo run build --filter=maptalks-gl",
"build-all": "turbo run build",
"build-dev": "turbo run build-dev*",
"lint": "turbo run lint",
"prettier": "prettier --parser=typescript --write **/*.{js,ts,md}",
"test": "turbo run test",
"changeset": "changeset",
"changeset-version": "changeset version",
"release": "pnpm build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuzhenn/gl-layers.git"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^20.11.30",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"lint-staged": "^15.0.2",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"turbo": "^2.0.0"
},
"engines": {
"node": "22"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"packageManager": "[email protected]",
"license": "MIT"
}