-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 KB
/
package.json
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
{
"name": "buntralino-client",
"version": "1.0.7",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "bun build.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"LICENSE",
"README.md",
],
"author": "Cosmo Myzrail Gorynych",
"license": "MIT",
"description": "Neutralino.js library for Buntralino. Buntralino unites Bun and Neutralino.js to make a simpler, lighter alternative to Electron and NW.js. Use Neutralino.js API at client and send harder tasks to Bun while keeping your development process easy.",
"keywords": [
"buntralino",
"electron",
"nwjs",
"nw.js",
"xpda",
"neutralino",
"bun",
"server"
],
"dependencies": {
"@neutralinojs/lib": "^5.5.0"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
}
}