-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "ratatui",
"version": "0.1.15",
"private": false,
"description": "TypeScript bindings for ratatui_ffi via ffi-napi",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/holo-q/ratatui-ts.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**",
"scripts/**",
"native/**",
"prebuilt/**",
"README.md"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"bin": {
"ratatui-ts-demos": "dist/cjs/bin/demo.js"
},
"scripts": {
"build": "tsup",
"demo": "node dist/cjs/bin/demo.js",
"ci:wait": "node scripts/ci-monitor.js --repo holo-q/ratatui-ts --workflow release.yml --ref $CI_REF --token $GITHUB_TOKEN --poll 15",
"check:introspect": "node scripts/check-introspection.js",
"check:introspect:fm": "node scripts/check-introspection.js /tmp/ffi.json --features-map scripts/features-map.json",
"lint": "echo 'no linter configured'",
"test": "vitest run",
"postinstall": "node scripts/postinstall.js",
"prepare": "npm run build && node scripts/postinstall.js",
"prepack": "npm run build && node scripts/postinstall.js"
},
"dependencies": {
"ffi-napi": "^4.0.3",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"ref-union-di": "^1.0.1",
"ref-array-di": "^1.2.1"
},
"devDependencies": {
"typescript": "^5.5.4",
"tsup": "^8.2.4",
"vitest": "^2.0.5",
"@types/node": "^20.14.10",
"@types/ref-napi": "^3.0.10",
"@types/ffi-napi": "^4.0.9"
}
}