forked from BlackBeltTechnology/pandino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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": "@pandino/configuration-management-api",
"version": "0.8.24",
"description": "Pandino Configuration Management API",
"main": "dist/cjs/configuration-management-api.cjs",
"module": "dist/esm/configuration-management-api.mjs",
"types": "dist/esm/dist/index.d.ts",
"type": "module",
"exports": {
".": {
"require": "./dist/cjs/configuration-management-api.cjs",
"default": "./dist/esm/configuration-management-api.mjs"
}
},
"scripts": {
"build": "rollup -c"
},
"keywords": [
"pandino",
"configuration",
"management",
"api"
],
"author": "Norbert Herczeg <[email protected]>",
"license": "EPL-2.0",
"homepage": "https://github.com/BlackBeltTechnology/pandino",
"repository": {
"type": "git",
"url": "https://github.com/BlackBeltTechnology/pandino.git",
"directory": "packages/@pandino/configuration-management-api"
},
"bugs": {
"url": "https://github.com/BlackBeltTechnology/pandino/issues"
},
"engines": {
"node": ">=14.9.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@pandino/pandino-api": "^0.8.24",
"@pandino/persistence-manager-api": "^0.8.24"
}
}