-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.16 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
72
73
{
"name": "geostyler-lyrx-parser",
"version": "2.1.0",
"description": "GeoStyler Style Parser implementation for ArcGIS Pro Layer Files (Lyrx)",
"type": "module",
"main": "dist/LyrxStyleParser.js",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-lyrx-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"arc gis",
"lyrx"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-lyrx-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-lyrx-parser#readme",
"scripts": {
"build-browser": "vite build --config vite.config.browser.ts",
"build-dist": "vite build --config vite.config.dist.ts && tsc -p tsconfig.json --emitDeclarationOnly",
"build": "npm run build-browser && npm run build-dist",
"typecheck": " tsc --project tsconfig-typecheck.json",
"lint": "eslint -c eslint.config.mjs src/**/*.ts && npm run prettier:check",
"prettier:check": "prettier src --write",
"prettier": "prettier src --write",
"prepublishOnly": "npm run build",
"release": "np --no-yarn",
"test": "vitest",
"lint:test": "npm run lint && npm run test",
"lint:typecheck:test": "npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.5",
"geostyler-style": "^12.0.0",
"jimp": "1.6.0"
},
"devDependencies": {
"@eslint/js": "^9.34.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@terrestris/eslint-config-typescript": "10.0.0",
"@types/node": "^25.6.0",
"@types/pngjs": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.33.0",
"prettier": "^3.4.0",
"typescript": "^5.4.5",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.6.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"funding": "https://opencollective.com/geostyler"
}