-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 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
{
"name": "@plsr/blaze",
"version": "0.0.2-beta3",
"repository": {
"url": "https://github.com/pulsar-inc/blaze",
"type": "git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"bun-types": "latest",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"openai": "^4.0.0"
},
"files": [
"src/**/*",
"dist/**/*",
"types.d.ts"
],
"license": "MIT",
"scripts": {
"build": "bun build ./src/index.ts --outdir=dist --sourcemap=external --target=node --splitting"
},
"type": "module",
"types": "src/index.ts"
}