-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@juukee/lafai",
"version": "1.0.12",
"description": "The cloud sdk for laf AI",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint \"./**/*.ts\"",
"fix": "eslint --fix \"./**/*.ts\"",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juukee/lafai.git"
},
"bugs": {
"url": "https://github.com/juukee/lafai/issues"
},
"homepage": "https://github.com/juukee/lafai#readme",
"keywords": [
"laf"
],
"author": "juukee ([email protected])",
"license": "ISC",
"devDependencies": {
"@lafjs/cloud": "^1.0.0-beta.7",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.2.5",
"rollup": "^3.24.1",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.4.0",
"chatgpt": "^5.2.5"
}
}