@pc-nexus/core 0.0.1-next.1

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.
Files changed (2) hide show
  1. package/index.js +4 -0
  2. package/package.json +36 -0
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ export * from "./lib/common.js";
2
+ export * from "./lib/context.js";
3
+ export * from "./lib/handler.js";
4
+ export * from "./lib/resolver.js";
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@pc-nexus/core",
3
+ "version": "0.0.1-next.1",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "build": "tsc",
8
+ "pub:alpha": "cd dist && npm publish --access public --tag alpha",
9
+ "pub": "cd dist && npm publish --access public --tag latest",
10
+ "pub-next": "cd dist && npm publish --access public --tag next"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/atinc/pc-nexus.git"
15
+ },
16
+ "author": "",
17
+ "license": "ISC",
18
+ "directories": {
19
+ "test": "test",
20
+ "lib": "dist"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "types": "index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "default": "./index.js",
29
+ "types": "./index.d.ts"
30
+ }
31
+ },
32
+ "type": "module",
33
+ "dependencies": {},
34
+ "devDependencies": {},
35
+ "peerDependencies": {}
36
+ }