-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.21 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
{
"name": "@furcata/core-node",
"description": "Furcata Core Node",
"type": "module",
"types": "./lib/**.d.ts",
"author": "Erny Sans",
"version": "0.0.3",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/furcata/core-node.git"
},
"engines": {
"node": ">=22"
},
"files": [
"src",
"lib",
"tsconfig.json"
],
"exports": {
"./model": "./lib/model/index.js",
"./interface": "./lib/interface/index.js"
},
"dependencies": {
"@fabricelements/shared-helpers": "github:FabricElements/shared-helpers"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"@types/node-fetch": "^3.0.3",
"eslint": "^10.0.3",
"typescript-eslint": "^8.57.1",
"typescript": "^5.9.3"
},
"overrides": {
"eslint": "^10.0.3"
},
"scripts": {
"build": "npm run clear && npm run lint && npm run compile",
"build:watch": "npm run clear && npm run lint && npm run compile:watch",
"clear": "rm -rf ./lib",
"compile": "tsc -p ./tsconfig.json",
"compile:watch": "tsc --watch -p ./tsconfig.json",
"eslint": "eslint",
"lint": "eslint",
"lint:fix": "eslint --fix"
}
}