Skip to content

Commit 0a55fa2

Browse files
committed
🚀 published packages
1 parent f697c07 commit 0a55fa2

File tree

640 files changed

+1413
-4793
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

640 files changed

+1413
-4793
lines changed

apps/home-v1

apps/home-v2

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"private": true,
99
"workspaces": [
1010
"packages/*",
11+
"packages_wechaty/*",
1112
"apps/*",
1213
"apps/neurora_home/*",
1314
"apps/neurora_assistant/*",

packages/common/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@cs-magic/common",
3+
"version": "0.1.0",
34
"type": "module",
45
"main": "./dist/index.js",
56
"exports": {
@@ -9,7 +10,15 @@
910
},
1011
"scripts": {
1112
"clean": "rm -rf dist",
12-
"build": "tsc -b"
13+
"build": "tsc -b",
14+
"prepublishOnly": "yarn build"
15+
},
16+
"files": [
17+
"dist",
18+
"README.md"
19+
],
20+
"publishConfig": {
21+
"access": "public"
1322
},
1423
"dependencies": {
1524
"@alicloud/dysmsapi20170525": "^3.0.0",

packages/frontend-common/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
{
22
"name": "@cs-magic/common-frontend",
3-
"version": "1.0.0",
3+
"version": "0.1.0",
44
"description": "",
55
"exports": {
66
"./*": "./dist/*.js"
77
},
88
"scripts": {
99
"clean": "rimraf dist",
10-
"build": "tsc -b"
10+
"build": "tsc -b",
11+
"prepublishOnly": "yarn build"
12+
},
13+
"files": [
14+
"dist",
15+
"README.md"
16+
],
17+
"publishConfig": {
18+
"access": "public"
1119
},
1220
"dependencies": {
1321
"html2canvas": "^1.4.1",

packages/frontend-shadcn/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cs-magic/shadcn",
3-
"version": "1.0.0",
3+
"version": "0.1.0",
44
"description": "",
55
"main": "index.js",
66
"exports": {
@@ -9,7 +9,15 @@
99
},
1010
"scripts": {
1111
"clean": "rimraf dist",
12-
"build": "npx tsc -b"
12+
"build": "npx tsc -b",
13+
"prepublishOnly": "yarn build"
14+
},
15+
"files": [
16+
"dist",
17+
"README.md"
18+
],
19+
"publishConfig": {
20+
"access": "public"
1321
},
1422
"dependencies": {
1523
"@hookform/resolvers": "*",

packages/frontend/package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@
99
},
1010
"scripts": {
1111
"clean": "rimraf dist",
12-
"build": "copyfiles -u1 src/**/*.{css,svg} dist && tsc -b"
12+
"build": "copyfiles -u1 src/**/*.{css,svg} dist && tsc -b",
13+
"prepublishOnly": "yarn build"
14+
},
15+
"files": [
16+
"dist",
17+
"README.md"
18+
],
19+
"publishConfig": {
20+
"access": "public"
1321
},
1422
"dependencies": {
1523
"@auth/prisma-adapter": "^2.4.2",

packages/llm/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@cs-magic/llm",
3+
"version": "0.1.0",
34
"packageManager": "[email protected]",
45
"type": "module",
56
"main": "./dist/index.js",
@@ -10,7 +11,15 @@
1011
},
1112
"scripts": {
1213
"clean": "rm -rf dist",
13-
"build": "tsc -b"
14+
"build": "tsc -b",
15+
"prepublishOnly": "yarn build"
16+
},
17+
"files": [
18+
"dist",
19+
"README.md"
20+
],
21+
"publishConfig": {
22+
"access": "public"
1423
},
1524
"dependencies": {
1625
"@cs-magic/common": "workspace:^",

packages/tools/package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
"name": "@cs-magic/tools",
33
"version": "1.0.0",
44
"description": "",
5+
"scripts": {
6+
"prepublishOnly": ""
7+
},
8+
"files": [
9+
"dist",
10+
"README.md"
11+
],
12+
"publishConfig": {
13+
"access": "public"
14+
},
515
"devDependencies": {
616
"@cs-magic/commands": "workspace:^",
717
"@cs-magic/eslint-config": "workspace:^",

packages/tools_commands/package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
{
22
"name": "@cs-magic/commands",
3-
"version": "1.0.0",
3+
"version": "0.1.0",
44
"description": "",
5+
"scripts": {
6+
"prepublishOnly": ""
7+
},
8+
"files": [
9+
"dist",
10+
"README.md"
11+
],
12+
"publishConfig": {
13+
"access": "public"
14+
},
515
"devDependencies": {
616
"copyfiles": "^2.4.1",
717
"cross-env": "^7.0.3",

0 commit comments

Comments
 (0)