-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 991 Bytes
/
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
{
"name": "ydb",
"version": "1.4.1",
"description": "Json/Yaml database for rapid prototyping",
"url": "https://onrirr.github.io/yDB/#/",
"repository": "github:onrirr/ydb",
"main": "./dist/esm/index.js",
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"start": "npx nodemon"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"./dist/esm/*": "./dist/esm/*.js",
"./dist/cjs/*": "./dist/cjs/*.js",
"./dist/types/*": "./dist/types/*.d.ts"
},
"author": "onrir",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"string-crypto": "^2.0.2",
"yaml": "^2.3.1"
}
}