-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "devjar",
"version": "0.9.2",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/huozhi/devjar"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"build": "pnpm run build:lib && pnpm run build:worker",
"build:lib": "bunchee",
"build:worker": "bun build src/transform-worker.ts --outfile dist/transform-worker.js --target browser --format esm --footer \"export {}\"",
"prepublishOnly": "pnpm run build",
"build:site": "pnpm run build && next build ./site",
"start": "next start ./site",
"dev": "pnpm run build && (pnpm run dev:lib & pnpm run dev:worker & pnpm run dev:site & wait)",
"dev:lib": "bunchee --watch",
"dev:worker": "bun build src/transform-worker.ts --outfile dist/transform-worker.js --target browser --format esm --footer \"export {}\" --watch",
"dev:site": "next dev ./site"
},
"peerDependencies": {
"react": "^19.0.0"
},
"dependencies": {
"es-module-lexer": "1.6.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript/native-preview": "7.0.0-dev.20260627.2",
"bunchee": "^6.11.0",
"codice": "^1.6.0",
"dedent": "^1.7.0",
"devjar": "link:",
"next": "16.3.0-canary.69",
"oxc-transform": "^0.137.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"typescript": "npm:@typescript/typescript6@^6.0.0",
"typescript-7": "npm:typescript@rc"
},
"packageManager": "pnpm@11.9.0"
}