-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@unvt/charites",
"version": "2.0.0",
"description": "",
"bin": {
"charites": "dist/cli.js"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w",
"lint": "eslint --fix .",
"test": "npm run build && NODE_OPTIONS='--experimental-specifier-resolution=node' mocha --timeout 5000 'test/*.ts'",
"test:watch": "npm test -- --watch --watch-files src/**/*.ts --watch-files test/**/*.ts",
"test:e2e": "npx playwright test",
"command": "./node_modules/.bin/ts-node ./src/cli.ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^20.3.1",
"@types/geojson": "^7946.0.14",
"@types/jsonminify": "^0.4.3",
"@unvt/sprite-one": "^0.1.1",
"axios": "^1.7.5",
"commander": "^12.1.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"jsonminify": "^0.4.2",
"node-watch": "^0.7.4",
"open": "^10.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.46.1",
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^7.1.8",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mapbox__point-geometry": "^0.1.4",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"kill-port-process": "^3.2.1",
"mocha": "^10.7.3",
"node-abort-controller": "^3.1.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"type": "module"
}