-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.97 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
{
"name": "cf-workers-deployer",
"version": "1.0.3",
"description": "A reverse engineering library that simulates deployment links in Cloudflare Workers Playground",
"main": "dist/cjs/index.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"copy:package.cjs.json": "pnpm ncp ./package.cjs.json ./dist/cjs/package.json && pnpm ncp ./package.cjs.json ./dist/types/package.json ",
"clean": "rimraf dist",
"build": "pnpm clean && tsx ./build.ts && pnpm copy:package.cjs.json",
"test": "echo \"Error: no test specified\"",
"format": "biome format . --write",
"lint": "biome check .",
"prerelease": "pnpm build",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hono-funclub/cf-workers-deployer.git"
},
"keywords": [
"cloudflare",
"cloudflare",
"worker",
"deploy",
"worker",
"edge",
"cf"
],
"files": [
"dist",
"!dist/types/**/*.js"
],
"author": "moons-14",
"license": "MIT",
"bugs": {
"url": "https://github.com/hono-funclub/cf-workers-deployer/issues"
},
"homepage": "https://github.com/hono-funclub/cf-workers-deployer#readme",
"dependencies": {
"lz-string": "^1.5.0"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types/index.d.ts"
]
}
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^20.11.10",
"arg": "^5.0.2",
"esbuild": "^0.20.0",
"glob": "^10.3.10",
"ncp": "^2.0.0",
"np": "^9.2.0",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}