-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
61
62
63
64
65
66
67
{
"name": "datura-js",
"version": "0.0.6",
"description": "Datura SDK for Node.js and the browser",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "tsup",
"test": "vitest run",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"build:beta": "cross-env NPM_CONFIG_TAG=beta npm run build",
"version:beta": "npm version prerelease --preid=beta",
"version:stable": "npm version patch",
"publish:beta": "npm run version:beta && npm run build:beta && npm publish --tag beta",
"publish:stable": "npm run version:stable && npm run build && npm publish",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.2",
"cross-env": "^7.0.3",
"prettier": "2.8.4",
"ts-node": "^10.9.2",
"tsup": "6.6.3",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.9.5",
"vitest": "0.28.5"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.7",
"axios": "^0.21.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Datura-ai/datura.js.git"
},
"keywords": [
"datura"
],
"author": "leva",
"bugs": {
"url": "https://github.com/Datura-ai/datura.js/issues"
},
"homepage": "https://github.com/Datura-ai/datura.js#readme"
}