forked from camptocamp/geospatial-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "geospatial-sdk",
"private": true,
"workspaces": [
"docs",
"packages/*"
],
"type": "module",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@types/geojson": "^7946.0.13",
"@types/node": "^20.11.0",
"@types/proj4": "^2.5.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"jsdom": "^23.2.0",
"lerna": "^8.0.2",
"prettier": "^3.2.2",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^1.2.1"
},
"scripts": {
"docs:build": "npm run docs:build --workspace docs",
"docs:dev": "npm run docs:dev --workspace docs",
"docs:preview": "npm run docs:preview --workspace docs",
"format:check": "prettier -c **/*.{js,ts,md,json,vue}",
"format:write": "prettier -w **/*.{js,ts,md,json,vue}",
"lint": "eslint **/*.{js,ts,vue}",
"publish-typedoc": "typedoc --options typedoc.json",
"test": "vitest",
"typecheck": "tsc --noEmit",
"build": "lerna run build",
"prepublish": "npm run build"
}
}