-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.73 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "edilkamin",
"version": "1.14.1",
"description": "",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/src/index.d.ts",
"default": "./dist/esm/src/index.js"
},
"require": {
"types": "./dist/cjs/src/index.d.ts",
"default": "./dist/cjs/src/index.js"
}
},
"./bluetooth": {
"import": {
"types": "./dist/esm/src/bluetooth.d.ts",
"default": "./dist/esm/src/bluetooth.js"
},
"require": {
"types": "./dist/cjs/src/bluetooth.d.ts",
"default": "./dist/cjs/src/bluetooth.js"
}
}
},
"scripts": {
"cli": "ts-node src/cli.ts",
"cli:debug": "node --inspect --require ts-node/register/transpile-only src/cli.ts",
"test": "nyc mocha --require ts-node/register src/*.test.ts",
"test:debug": "nyc mocha --require ts-node/register/transpile-only --inspect src/*.test.ts",
"lint:prettier": "prettier --check src docs .github *.json *.md *.mjs",
"format:prettier": "prettier --write src docs .github *.json *.md *.mjs",
"lint:eslint": "eslint src",
"format:eslint": "eslint --fix src",
"lint": "yarn lint:prettier && yarn lint:eslint",
"format": "yarn format:prettier && yarn format:eslint",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreMiras/edilkamin.js.git"
},
"author": "Andre Miras",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreMiras/edilkamin.js/issues"
},
"homepage": "https://github.com/AndreMiras/edilkamin.js#readme",
"bin": {
"edilkamin": "dist/cjs/src/cli.js"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
]
},
"dependencies": {
"aws-amplify": "^6.10.0",
"pako": "^2.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^24",
"@types/pako": "^2.0.4",
"@types/sinon": "^21.0.0",
"@types/web-bluetooth": "^0.0.21",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"esbuild": "^0.27.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"prettier": "^3.7.4",
"sinon": "^21.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.28.15",
"typescript": "^5.7.2"
},
"optionalDependencies": {
"commander": "^14.0.2"
}
}