-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "@rewritejs/sdk",
"module": "src/index.ts",
"type": "module",
"private": false,
"version": "1.0.1",
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@rewritejs/rest": "^1.0.2",
"@rewritejs/types": "^1.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"maintainers": [
{
"name": "Almeida",
"url": "https://github.com/almeidazs"
}
],
"scripts": {
"test": "bun test",
"biome:check": "biome check --write .",
"build": "rm -rf dist && bun run scripts/version.ts && bun biome:check && bun build src/index.ts --outdir dist --target node && bun run types",
"types": "bunx tsc --emitDeclarationOnly",
"prepublishOnly": "bun run build"
},
"engines": {
"node": ">=18",
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rewritetoday/node.git"
},
"publishConfig": {
"access": "public"
},
"description": "An ergonomic SDK to integrate with Rewrite in your workflow"
}