@aigne/core 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "AIGNE core library",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"homepage": "https://github.com/blocklet/ai-studio#readme",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"type": "module",
|
|
12
|
-
"main": "./cjs/index.js",
|
|
13
|
-
"module": "./index.js",
|
|
14
|
-
"types": "./index.d.js",
|
|
12
|
+
"main": "./lib/cjs/index.js",
|
|
13
|
+
"module": "./lib/esm/index.js",
|
|
14
|
+
"types": "./lib/types/index.d.js",
|
|
15
15
|
"files": [
|
|
16
16
|
"lib",
|
|
17
17
|
"LICENSE",
|
|
@@ -23,21 +23,9 @@
|
|
|
23
23
|
"type": "git",
|
|
24
24
|
"url": "git+https://github.com/blocklet/ai-studio.git"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",
|
|
28
|
-
"lint:fix": "npm run lint -- --fix",
|
|
29
|
-
"build": "tsc --noEmit && run-p build:*",
|
|
30
|
-
"build:cjs": "tsc -p tsconfig.json --module commonjs --outDir lib/cjs",
|
|
31
|
-
"build:esm": "tsc -p tsconfig.json --module es2022 --outDir lib/esm",
|
|
32
|
-
"build:types": "tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir lib/types",
|
|
33
|
-
"clean": "rimraf cjs esm",
|
|
34
|
-
"prepublishOnly": "npm run build",
|
|
35
|
-
"test": "jest src/"
|
|
36
|
-
},
|
|
37
26
|
"dependencies": {
|
|
38
27
|
"@abtnode/client": "^1.16.33",
|
|
39
28
|
"@blocklet/ai-kit": "^0.1.65",
|
|
40
|
-
"@blocklet/quickjs": "workspace:^",
|
|
41
29
|
"@blocklet/sdk": "^1.16.33",
|
|
42
30
|
"axios": "^1.7.5",
|
|
43
31
|
"cron": "^3.1.7",
|
|
@@ -55,7 +43,8 @@
|
|
|
55
43
|
"react-querybuilder": "^7.7.1",
|
|
56
44
|
"snowflake-uuid": "^1.0.0",
|
|
57
45
|
"ufo": "^1.5.4",
|
|
58
|
-
"yaml": "^2.5.0"
|
|
46
|
+
"yaml": "^2.5.0",
|
|
47
|
+
"@blocklet/quickjs": "^0.4.160"
|
|
59
48
|
},
|
|
60
49
|
"devDependencies": {
|
|
61
50
|
"@tsconfig/recommended": "^1.0.8",
|
|
@@ -63,5 +52,15 @@
|
|
|
63
52
|
"rimraf": "^6.0.1",
|
|
64
53
|
"ts-jest": "^29.2.5",
|
|
65
54
|
"typescript": "^5.5.4"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",
|
|
58
|
+
"lint:fix": "npm run lint -- --fix",
|
|
59
|
+
"build": "tsc --noEmit && run-p build:*",
|
|
60
|
+
"build:cjs": "tsc -p tsconfig.json --module commonjs --outDir lib/cjs",
|
|
61
|
+
"build:esm": "tsc -p tsconfig.json --module es2022 --outDir lib/esm",
|
|
62
|
+
"build:types": "tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir lib/types",
|
|
63
|
+
"clean": "rimraf cjs esm",
|
|
64
|
+
"test": "jest src/"
|
|
66
65
|
}
|
|
67
|
-
}
|
|
66
|
+
}
|