-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
{
"name": "dart_bindgen",
"version": "0.5.0",
"description": "A modern, type-safe code generator to create Dart JS-interop bindings from TypeScript .d.ts files.",
"main": "dist/cli.js",
"bin": {
"dart_bindgen": "dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codewithsam110g/dartify.git"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsup src/cli.ts --format esm --target node20 --out-dir dist --clean",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"test:snapshot": "vitest run test/snapshot.test.ts",
"test:snapshot:ui": "vitest --ui test/snapshot.test.ts",
"test:snapshot:update": "vitest run test/snapshot.test.ts -u",
"test:snapshot:check": "vitest run test/snapshot.test.ts --reporter=verbose",
"test:debug": "vitest --inspect-brk --no-coverage --reporter=verbose",
"test:clean": "rm -rf test/__snapshots__",
"test:cli": "pnpm build && node dist/cli.js --files ./path/to/test.d.ts --outDir ./output",
"clean": "rm -rf dist output",
"prepublishOnly": "pnpm build"
},
"type": "module",
"keywords": [
"typescript",
"dart",
"interop",
"codegen",
"flutter",
"bindings",
"js_facade_gen",
"js_interop",
"dts",
"bindgen"
],
"author": "Samba Siva Rao Kovvuru <codewithsam110g>",
"license": "Apache-2.0",
"packageManager": "pnpm@10.9.0",
"dependencies": {
"fast-glob": "^3.3.3",
"ts-morph": "^26.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@types/yargs": "^17.0.33",
"@vitest/ui": "^3.2.4",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}