Skip to content

Commit 2f92f70

Browse files
author
kangping-git
committed
add example of bigint
1 parent b4fd709 commit 2f92f70

7 files changed

Lines changed: 1971 additions & 1 deletion

File tree

bun.lock

Lines changed: 21 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../packages/skill/hikkaku

examples/bigint/AGENTS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* `src/main.ts`: The main entry point of the application.
2+
3+
* use `bun typecheck` to run type checking.

examples/bigint/package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "@repo/example-bigint",
3+
"private": true,
4+
"type": "module",
5+
"scripts": {
6+
"dev": "vite",
7+
"build": "bun run example:build",
8+
"typecheck": "tsgo",
9+
"example:build": "bun --bun vite build"
10+
},
11+
"dependencies": {
12+
"hikkaku": "workspace:*"
13+
},
14+
"devDependencies": {
15+
"@typescript/native-preview": "^7.0.0-dev.20260127.1",
16+
"vite": "8.0.0-beta.14"
17+
},
18+
"exports": {
19+
".": "./src/main.ts"
20+
},
21+
"author": {
22+
"name": "Kingping",
23+
"url": "https://scratch.mit.edu/users/Kangping/"
24+
}
25+
}

0 commit comments

Comments
 (0)