-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.34 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
{
"name": "@iringo/geoservices",
"organizationName": " iRingo",
"displayName": " iRingo: 🗺️ Maps",
"description": "自定义 Maps app\n添加国际版功能\n自定义服务版本",
"homepage": "https://NSRingo.github.io/guide/GeoServices/maps",
"openUrl": "http://boxjs.com/#/app/iRingo.Maps",
"icon": "https://developer.apple.com/assets/elements/icons/maps/maps-128x128.png",
"keywords": [],
"contributors": [
"VirgilClyne[https://github.com/VirgilClyne]"
],
"system": [
"iOS",
"iPadOS",
"macOS"
],
"systemVersion": 15,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NSRingo/GeoServices.git"
},
"directories": {
"example": "example"
},
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel build:dev build:dev-args",
"dev:pages": "npx wrangler pages dev --port 8787",
"dev:workers": "npx wrangler dev -c wrangler.workers.jsonc",
"dev:vercel": "npx vercel dev --listen 8787",
"deploy:pages": "npx wrangler pages deploy",
"deploy:workers": "npx wrangler deploy --minify -c wrangler.workers.jsonc",
"deploy:vercel": "npx vercel deploy --prod",
"build": "rollup -c",
"build:dev": "rollup -c rollup.dev.config.mjs",
"build:dev-args": "arguments-builder build -c arguments-builder.dev.config.ts",
"build:release-args": "arguments-builder build -c arguments-builder.release.config.ts",
"build:full-args": "arguments-builder boxjs -c arguments-builder.full.config.ts",
"build:args:rewrite": "arguments-builder build -c arguments-builder.rewrite.config.ts",
"build:args": "npm-run-all --serial build:release-args build:full-args",
"dts": "arguments-builder dts -c arguments-builder.full.config.ts"
},
"browserslist": [
"iOS >= 15"
],
"devDependencies": {
"@iringo/arguments-builder": "^1.8.5",
"@protobuf-ts/plugin": "^2.11.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.62.2",
"typescript": "^6.0.3"
},
"dependencies": {
"@auraflare/shared": "^1.1.1",
"@biomejs/biome": "^2.4.6",
"@nsnanocat/util": "^2.7.0",
"@nsnanocat/xml": "^0.4.4",
"@nsringo/mapkit": "^1.1.3",
"@protobuf-ts/runtime": "^2.11.1",
"fetch-cookie": "^3.2.0",
"hono": "^4.12.5"
},
"overrides": {
"@iringo/surge2egern": {
"puppeteer": "25.7.0"
}
}
}