-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "spark-node-sdk",
"version": "0.0.7",
"description": "讯飞星火大模型非官方 Nodejs SDK Xunfei's 'Xinghuo' SparkDesk big model unofficial sdk for Nodejs",
"main": "dist/spark.js",
"types": "dist/spark.d.ts",
"scripts": {
"dev": "rollup --config rollup.config.mjs --watch",
"build": "rollup --config rollup.config.mjs --environment NODE_ENV:production",
"test": "jest"
},
"keywords": [
"SparkDesk",
"spark",
"node-spark",
"Xinghuo",
"Xunfei"
],
"repository": {
"type": "git",
"url": "https://github.com/greywen/spark-node"
},
"author": "gy [email protected]",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.4",
"@types/ws": "^8.5.5",
"babel-loader": "^9.1.3",
"rollup": "^3.28.1",
"rollup-plugin-cleanup": "^3.2.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
},
"dependencies": {
"crypto-js": "^4.1.1",
"ws": "^8.13.0"
}
}