-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.86 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.86 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "data-buddy",
"version": "0.0.5",
"description": "Data Buddy helps you to manage your data in a simple way. It can be used to cache data, store data in a file, and soon more.",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"clean": "del-cli dist",
"lint": "npx eslint . --ext=.ts",
"build": "npm run clean && npm run compile",
"compile": "tsup-node",
"publish:latest": "npm publish --tag latest",
"publish:next": "npm publish --tag next",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts"
},
"keywords": [
"data",
"cache",
"file",
"json",
"data-buddy",
"easy",
"simple"
],
"author": "prisca-c",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./init": "./dist/src/data_buddy.js",
"./cache": "./dist/src/cache.js",
"./file": "./dist/src/file.js"
},
"repository": {
"type": "git",
"url": "git://github.com/prisca-c/data-buddy.git"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.1.2",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^1.4.1",
"@japa/assert": "^4.1.1",
"@japa/file-system": "^2.3.2",
"@japa/runner": "^4.4.0",
"@swc/core": "^1.15.0",
"@types/node": "^22.19.0",
"del-cli": "^7.0.0",
"eslint": "^9.39.1",
"patch-package": "^8.0.1",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"prettier": "@adonisjs/prettier-config",
"tsup": {
"entry": [
"./index.ts",
"./src/data_buddy.ts",
"./src/data_buddy_utils.ts",
"./src/file.ts",
"./src/cache.ts"
],
"outDir": "./dist",
"clean": true,
"format": "esm",
"dts": true,
"target": "esnext"
}
}