-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 700 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 700 Bytes
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
{
"name": "@openworkers/workers-types",
"version": "0.1.10",
"description": "TypeScript types for the OpenWorkers runtime",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openworkers/workers-types"
},
"keywords": [
"openworkers",
"workers",
"typescript",
"types"
],
"types": "index.d.ts",
"files": [
"index.d.ts",
"types/*.d.ts"
],
"scripts": {
"format": "prettier --write ."
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"devDependencies": {
"prettier": "^3.8.1"
}
}