-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.92 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@openforis/arena-core",
"author": {
"name": "OpenForis",
"email": "openforis.arena@gmail.com"
},
"version": "1.1.2",
"description": "Arena core module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@types/babel__core": "^7",
"@types/jest": "^30.0.0",
"@types/lodash.differencewith": "^4.5.9",
"@types/lodash.frompairs": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.topairs": "^4.3.9",
"@types/node": "^25.5.0",
"@types/proj4": "^2.19.0",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"dependencies": {
"@jsep-plugin/regex": "^1.0.4",
"@turf/destination": "^7.3.4",
"bignumber.js": "^10.0.2",
"change-case": "^5.4.4",
"jsep": "^1.4.0",
"lodash.differencewith": "^4.5.0",
"lodash.frompairs": "^4.0.1",
"lodash.isequal": "^4.5.0",
"lodash.topairs": "^4.3.0",
"moment": "^2.30.1",
"proj4": "^2.20.4",
"uuid": "^13.0.0"
},
"scripts": {
"build:watch": "tsc --watch",
"build": "tsc",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "yarn build && husky",
"test": "jest"
},
"files": [
"dist/**/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*.{js,ts,json,css,md}": "prettier --write"
},
"packageManager": "yarn@4.13.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}