-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.07 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
{
"name": "vite-plugin-cesium-build",
"type": "module",
"version": "0.7.0",
"private": false,
"packageManager": "pnpm@9.14.2",
"description": "CesiumJS support for Vite",
"author": "s3xysteak",
"license": "MIT",
"homepage": "https://github.com/s3xysteak/vite-plugin-cesium-build",
"repository": {
"type": "git",
"url": "git+https://github.com/s3xysteak/vite-plugin-cesium-build.git"
},
"bugs": "https://github.com/s3xysteak/vite-plugin-cesium-build/issues",
"keywords": [
"vite",
"vite-plugin",
"cesium",
"CesiumJS"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./engine": {
"types": "./dist/engine.d.ts",
"import": "./dist/engine.mjs",
"require": "./dist/engine.cjs"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.mjs",
"require": "./dist/core.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "tsc && unbuild",
"build:only": "unbuild",
"test": "vitest",
"test:once": "vitest run",
"release": "tsc && bumpp",
"publish:ci": "pnpm publish --access public --no-git-checks",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0"
},
"dependencies": {
"consola": "^3.2.3",
"pathe": "^1.1.2",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-static-copy": "^2.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@s3xysteak/utils": "^0.9.0",
"@types/node": "^22.10.1",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"esno": "^4.8.0",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite": "catalog:",
"vitest": "^2.1.6"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
}
}