-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.24 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
50
51
52
53
54
{
"name": "adminjs-feathers",
"version": "0.1.7",
"homepage": "https://github.com/AshotN/adminjs-feathers",
"description": "An adapter to connect AdminJS to FeathersJS",
"license": "MIT",
"main": "dist/ESM/index.js",
"types": "src/index",
"type": "module",
"exports": {
"import": "./dist/ESM/index.js",
"require": "./dist/CJS/index.js"
},
"files": [
"/dist",
"/src"
],
"repository": {
"type": "git",
"url": "https://github.com/AshotN/adminjs-feathers"
},
"packageManager": "[email protected]",
"scripts": {
"clean": "rimraf dist",
"build:cjs": "tsc -p tsconfig.CJS.json && cp package.CJS.json dist/CJS/package.json",
"build": "yarn clean && tsc && yarn build:cjs"
},
"author": {
"name": "Ashot Nazaryan",
"email": "[email protected]",
"url": "https://github.com/AshotN/"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": true
},
"peerDependencies": {
"@feathersjs/feathers": "~5.0.0",
"@feathersjs/typebox": "~5.0.0",
"adminjs": ">=6.0.0"
},
"devDependencies": {
"@feathersjs/errors": "~5.0.0",
"@feathersjs/feathers": "~5.0.0",
"@feathersjs/typebox": "~5.0.0",
"adminjs": "^7",
"prettier": "3.2.5",
"rimraf": "^3.0.2",
"typescript": "5.4.5"
}
}