kernel-kit 0.0.0
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 +3 -0
- package/dist/index.cjs +0 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +61 -0
package/README.md
ADDED
package/dist/index.cjs
ADDED
|
File without changes
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kernel-kit",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "File-based routing CLI framework",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "hoyeon lee",
|
|
8
|
+
"email": "ho991217@kakao.com",
|
|
9
|
+
"url": "https://github.com/ho991217"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": {
|
|
18
|
+
"types": "./dist/index.d.mts",
|
|
19
|
+
"default": "./dist/index.mjs"
|
|
20
|
+
},
|
|
21
|
+
"require": {
|
|
22
|
+
"types": "./dist/index.d.cts",
|
|
23
|
+
"default": "./dist/index.cjs"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsdown",
|
|
32
|
+
"dev": "tsdown --watch",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"prepublishOnly": "yarn build",
|
|
35
|
+
"lint": "oxlint",
|
|
36
|
+
"format": "oxfmt --write",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"changeset:publish": "changeset publish",
|
|
39
|
+
"changeset:version": "changeset version"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@changesets/cli": "^2.29.8",
|
|
43
|
+
"oxfmt": "^0.35.0",
|
|
44
|
+
"oxlint": "^1.50.0",
|
|
45
|
+
"tsdown": "^0.21.0-beta.2",
|
|
46
|
+
"typescript": "^5.9.3",
|
|
47
|
+
"vitest": "^4.0.18"
|
|
48
|
+
},
|
|
49
|
+
"dependenciesMeta": {
|
|
50
|
+
"oxfmt@0.35.0": {
|
|
51
|
+
"unplugged": true
|
|
52
|
+
},
|
|
53
|
+
"oxlint@1.50.0": {
|
|
54
|
+
"unplugged": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=18"
|
|
59
|
+
},
|
|
60
|
+
"packageManager": "yarn@4.12.0"
|
|
61
|
+
}
|