-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.54 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
79
{
"name": "cdk",
"description": "geospatial for Cesium",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"demo:dev": "cd demo && npm run dev",
"build": "node scripts/build.js",
"demo:build": "cd demo && npm run build",
"doc:html": "node scripts/doc_html.js",
"doc:md": "node scripts/doc_md.js",
"docs": "typedoc ./packages/cdk/src/index.ts --out ./docs --favicon .assets/favicon.ico --name CDK-Documentation",
"new": "node scripts/add_pkg.js",
"release": "node scripts/release.js",
"unrelease": "node scripts/unrelease.js",
"clear": "node scripts/clear.js",
"linking": "node scripts/link.js",
"unlinking": "npm rm | uninstall --global my-package",
"test:unit": "npx vitest",
"test:unit-coverage": "npx vitest run --coverage",
"test:unit-report": "npx vitest --reporter=html",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:init": "npx conventional-changelog -p angular -r 0 -o CHANGELOG.md"
},
"keywords": [
"cesium",
"geospatial",
"analyse"
],
"author": "WangShihan",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@esm2cjs/execa": "6.1.1-cjs.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@turf/turf": "^7.2.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"@vitest/coverage-istanbul": "3.0.9",
"@vitest/coverage-v8": "3.0.9",
"@vitest/ui": "^3.0.9",
"canvas": "^3.1.0",
"cesium": "^1.123.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"execa": "9.5.2",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"madge": "^8.0.0",
"rollup": "^4.29.1",
"rollup-obfuscator": "^4.1.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^4.4.0",
"typescript": "^5.7.2",
"vitest": "^3.0.9"
}
}