-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
{
"name": "@-anarchy-/chat",
"version": "0.1.4",
"description": "Connect to, and interact with, chat.dev, an Anarchy product",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "npm run test",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module es2015 --outDir ./lib/esm",
"build:cjs": "tsc --module commonjs --outDir ./lib/cjs",
"prepack": "npm run build",
"publish-to-npm": "npm run prepack && npm version patch && sleep 2 && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extensional/chat.dev-consumer.git"
},
"keywords": [
"chat.dev",
"chat",
"anarchy",
"llm",
"npl",
"openai"
],
"author": "Nico Kupfer @ Anarchy",
"license": "MIT",
"bugs": {
"url": "https://github.com/extensional/chat.dev-consumer/issues"
},
"homepage": "https://github.com/extensional/chat.dev-consumer#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^31.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@-anarchy-/config": "^1.0.14",
"axios": "^1.3.4"
},
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
}
}