-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 2.76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "cesium-use",
"type": "module",
"version": "0.16.0",
"private": false,
"packageManager": "pnpm@9.14.1",
"description": "Vue powered CesiumJS utility library",
"author": "s3xysteak",
"license": "MIT",
"homepage": "https://github.com/s3xysteak/cesium-use",
"repository": {
"type": "git",
"url": "https://github.com/s3xysteak/cesium-use.git"
},
"bugs": "https://github.com/s3xysteak/cesium-use/issues",
"keywords": [
"cesium",
"vue",
"utils"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./imports": {
"types": "./dist/imports.d.ts",
"default": "./dist/imports.mjs"
},
"./resolvers": {
"types": "./dist/resolvers.d.ts",
"default": "./dist/resolvers.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vite",
"test": "vitest",
"test:once": "vitest run",
"build": "run-p type:check \"build:only {@}\" --",
"build:types": "tsc --emitDeclarationOnly",
"release": "pnpm type:check && bumpp",
"build:only": "vite build",
"type:check": "vue-tsc --noEmit --allowImportingTsExtensions && tsc --noEmit",
"docs:dev": "vitepress dev src",
"docs:build": "vitepress build src",
"docs:preview": "vitepress preview src",
"publish:ci": "pnpm publish --access public --no-git-checks",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"cesium": "^1.100.0",
"vue": "^3.4.0"
},
"dependencies": {
"@s3xysteak/utils": "^0.9.0",
"@vueuse/core": "^11.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@tsconfig/node20": "^20.1.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.1",
"@unocss/reset": "^0.64.1",
"@unocss/transformer-directives": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.6.0",
"bumpp": "^9.8.1",
"cesium": "^1.123.1",
"consola": "^3.2.3",
"eslint": "^9.15.0",
"fs-extra": "^11.2.0",
"jsdom": "^25.0.1",
"markdown-it-mathjax3": "^4.3.2",
"npm-run-all2": "^7.0.1",
"pathe": "^1.1.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"unocss": "^0.64.1",
"unplugin-export-collector": "^0.6.0",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.11",
"vite-plugin-dts": "4.3.0",
"vite-plugin-static-copy": "^2.1.0",
"vitepress": "1.5.0",
"vitest": "^2.1.5",
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.10"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
}
}