-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.19 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.19 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
74
75
76
77
78
{
"name": "@map-colonies/raster-shared",
"version": "7.10.2",
"description": "This is template for map colonies typescript packages",
"main": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "jest --config=./tests/configurations/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"copy": "npm run copy:yaml",
"copy:yaml": "copyfiles -u 1 \"./src/openapi/**/*.yaml\" ./dist",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepack": "npm run build && npm run copy",
"prepare": "husky",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/raster-shared.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/raster-shared/issues"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/MapColonies/raster-shared#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@map-colonies/eslint-config": "^4.0.0",
"@map-colonies/prettier-config": "^0.0.1",
"@map-colonies/tsconfig": "^1.0.0",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.4.0",
"@types/node": "^14.14.12",
"commitlint": "^19.6.1",
"eslint": "^8.36.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.4",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.0.5",
"tsc-alias": "^1.8.10",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"standard-version": "^9.5.0"
},
"dependencies": {
"@map-colonies/mc-priority-queue": "^9.1.0",
"@map-colonies/types": "^1.4.0",
"geojson": "^0.5.0",
"zod": "^3.24.1"
}
}