-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1004 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1004 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
36
37
38
39
40
41
42
43
{
"name": "@runtimed/anaconda",
"version": "0.1.0",
"description": "Anaconda integrations for the Runt Web",
"homepage": "https://github.com/runtimed/anaconda#readme",
"bugs": {
"url": "https://github.com/runtimed/anaconda/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runtimed/anaconda.git"
},
"author": "Anil Kulkarni",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "npx tsc"
},
"dependencies": {
"@runtimed/extensions": "^0.3.0",
"jose": "^6.0.12"
},
"devDependencies": {
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.20250813.0"
}
}