@ones-open/types 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/dist/index.cjs ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ const index = {};
3
+ module.exports = index;
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ const index = {};
2
+ export {
3
+ index as default
4
+ };
@@ -0,0 +1,5 @@
1
+ export type { ModalProps } from '@ones-design/core';
2
+ export type { ToastProps } from '@ones-design/core/dist/types/components/toast/toast';
3
+ declare const _default: {};
4
+ export default _default;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AACnD,YAAY,EAAE,UAAU,EAAE,MAAM,qDAAqD,CAAA;;AAErF,wBAAiB"}
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ // fallback entry for unsupported npm exports statement
2
+ export * from './dist/types/index'
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // fallback entry for unsupported npm exports statement
2
+ export * from './dist/index.js'
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@ones-open/types",
3
+ "version": "0.0.5",
4
+ "description": "",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/types/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "build": "pnpm clean && pnpm run tsc && vite build",
18
+ "clean": "rm -rf ./dist",
19
+ "test": "tsc --noEmit --emitDeclarationOnly false",
20
+ "tsc": "tsc && tsc-alias"
21
+ },
22
+ "keywords": [
23
+ "ones"
24
+ ],
25
+ "author": {
26
+ "name": "lixinliang",
27
+ "email": "lixinliang@ones.cn"
28
+ },
29
+ "maintainers": [
30
+ {
31
+ "name": "ones"
32
+ }
33
+ ],
34
+ "files": [
35
+ "dist",
36
+ "index.d.ts",
37
+ "index.js"
38
+ ],
39
+ "license": "Apache-2.0",
40
+ "publishConfig": {
41
+ "registry": "https://registry.npmjs.org",
42
+ "access": "public"
43
+ },
44
+ "devDependencies": {
45
+ "@ones-design/core": "^2.33.4"
46
+ }
47
+ }