@vnejs/constants 0.0.2

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.
@@ -0,0 +1,2 @@
1
+ export declare const EMPTY_OBJECT: Record<string, unknown>;
2
+ export declare const EMPTY_ARRAY: unknown[];
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export const EMPTY_OBJECT = {};
2
+ export const EMPTY_ARRAY = [];
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@vnejs/constants",
3
+ "version": "0.0.2",
4
+ "description": "",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "build": "rm -rf dist && tsc -p tsconfig.json",
13
+ "publish:major": "npm run build && npm version major && npm publish --access public",
14
+ "publish:minor": "npm run build && npm version minor && npm publish --access public",
15
+ "publish:patch": "npm run build && npm version patch && npm publish --access public"
16
+ },
17
+ "author": "",
18
+ "license": "ISC",
19
+ "devDependencies": {
20
+ "typescript": "^6.0.3"
21
+ }
22
+ }