@vft/directives 0.0.4 → 0.0.5
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 +9 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vft/directives",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.5",
|
4
4
|
"main": "./dist/cjs/index.cjs",
|
5
5
|
"module": "./dist/es/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -11,20 +11,24 @@
|
|
11
11
|
}
|
12
12
|
},
|
13
13
|
"scripts": {
|
14
|
-
"stub": "unbuild --stub && pnpm -F @vft/
|
14
|
+
"stub-unbuild": "unbuild --stub && pnpm -F @vft/build-common stub-helper",
|
15
|
+
"stub": "tsup --config ../../scripts/build/src/tsup.config.ts",
|
15
16
|
"dev": "pnpm run stub",
|
16
17
|
"clean": "pnpm /^clean:/",
|
17
18
|
"clean:dist": "rimraf dist",
|
18
19
|
"clean:node_modules": "rimraf node_modules",
|
19
20
|
"build": "vite build",
|
20
|
-
"pub": "pnpm clean:dist && pnpm build && tsx ../../scripts/src/publish.ts --pkg
|
21
|
+
"pub": "pnpm clean:dist && pnpm build && tsx ../../scripts/build/src/publish.ts --pkg common/directives"
|
21
22
|
},
|
22
23
|
"files": [
|
23
24
|
"dist"
|
24
25
|
],
|
25
26
|
"peerDependencies": {
|
26
|
-
"vue": ">=3.2.0",
|
27
27
|
"@vft/use": "workspace:*",
|
28
|
-
"@vft/utils": "workspace:*"
|
28
|
+
"@vft/utils": "workspace:*",
|
29
|
+
"vue": ">=3.2.0"
|
30
|
+
},
|
31
|
+
"dependencies": {
|
32
|
+
"vft": "^0.0.26"
|
29
33
|
}
|
30
34
|
}
|