primitive-app 3.0.5 → 3.0.7
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/README.md +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.js +3841 -3807
- package/package.json +18 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "primitive-app",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "Primitive LLC",
|
|
6
6
|
"type": "module",
|
|
@@ -37,6 +37,21 @@
|
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": "^20.19.0 || >=22.12.0"
|
|
39
39
|
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"prepublishOnly": "pnpm build",
|
|
42
|
+
"dev": "vite",
|
|
43
|
+
"build": "pnpm codegen && run-p type-check \"build-only {@}\" -- && pnpm build:dts",
|
|
44
|
+
"preview": "vite preview",
|
|
45
|
+
"clean": "rm -rf dist && pnpm clean-modules",
|
|
46
|
+
"clean-modules": "rm -rf node_modules pnpm-lock.yaml",
|
|
47
|
+
"build-only": "vite build",
|
|
48
|
+
"build:dts": "vue-tsc -p tsconfig.build.json --declaration --emitDeclarationOnly",
|
|
49
|
+
"type-check": "vue-tsc --build",
|
|
50
|
+
"lint": "eslint . --fix --cache",
|
|
51
|
+
"format:check": "prettier --check src/",
|
|
52
|
+
"format": "prettier --write src/",
|
|
53
|
+
"codegen": "npx js-bao-codegen && pnpm format"
|
|
54
|
+
},
|
|
40
55
|
"dependencies": {
|
|
41
56
|
"@internationalized/date": "^3.12.2",
|
|
42
57
|
"@lucide/vue": "^1.22.0",
|
|
@@ -94,7 +109,7 @@
|
|
|
94
109
|
"eslint-plugin-vue": "~10.9.2",
|
|
95
110
|
"jiti": "^2.7.0",
|
|
96
111
|
"js-bao": "^0.5.1",
|
|
97
|
-
"js-bao-wss-client": "
|
|
112
|
+
"js-bao-wss-client": "^2.0.4",
|
|
98
113
|
"npm-run-all2": "^9.0.2",
|
|
99
114
|
"pinia": "^3.0.4",
|
|
100
115
|
"prettier": "3.9.4",
|
|
@@ -107,19 +122,5 @@
|
|
|
107
122
|
"vue": "^3.5.39",
|
|
108
123
|
"vue-router": "^5.1.0",
|
|
109
124
|
"vue-tsc": "^3.3.6"
|
|
110
|
-
},
|
|
111
|
-
"scripts": {
|
|
112
|
-
"dev": "vite",
|
|
113
|
-
"build": "pnpm codegen && run-p type-check \"build-only {@}\" -- && pnpm build:dts",
|
|
114
|
-
"preview": "vite preview",
|
|
115
|
-
"clean": "rm -rf dist && pnpm clean-modules",
|
|
116
|
-
"clean-modules": "rm -rf node_modules pnpm-lock.yaml",
|
|
117
|
-
"build-only": "vite build",
|
|
118
|
-
"build:dts": "vue-tsc -p tsconfig.build.json --declaration --emitDeclarationOnly",
|
|
119
|
-
"type-check": "vue-tsc --build",
|
|
120
|
-
"lint": "eslint . --fix --cache",
|
|
121
|
-
"format:check": "prettier --check src/",
|
|
122
|
-
"format": "prettier --write src/",
|
|
123
|
-
"codegen": "npx js-bao-codegen && pnpm format"
|
|
124
125
|
}
|
|
125
|
-
}
|
|
126
|
+
}
|