-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.85 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
55
56
57
{
"name": "ntag21x",
"version": "0.0.0",
"description": "A simple TypeScript/JavaScript library to build commands and parse responses for NTAG21x NFC tags.",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prepublishOnly": "pnpm -s check",
"prepare": "pnpm -s build",
"build": "node -e \"require('fs').rmSync('./dist', { recursive: true, force: true });\" && tsc && tsc-alias",
"check": "run-p -l check:*",
"check:type": "tsc --noEmit",
"check:format": "prettier --no-error-on-unmatched-pattern --check --log-level=warn \".\"",
"check:lint": "eslint --report-unused-disable-directives --color \"src/**/*.{js,ts}\"",
"fix": "run-s -l check:type fix:*",
"fix:format": "prettier --no-error-on-unmatched-pattern --write --log-level=warn \".\"",
"fix:lint": "eslint --report-unused-disable-directives --fix --color \"src/**/*.{js,ts}\""
},
"keywords": [
"RFID",
"NFC",
"command",
"parser"
],
"license": "MIT",
"repository": "github:ScArLeXiA/ntag21x",
"homepage": "https://github.com/ScArLeXiA/ntag21x#readme",
"bugs": {
"url": "https://github.com/ScArLeXiA/ntag21x/issues"
},
"author": {
"name": "ScArLeXiA",
"email": "scarlexia.uwu@gmail.com"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint": "~8.56.12",
"@types/eslint-config-prettier": "~6.11.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-unused-imports": "^4.1.3",
"just-pnpm": "^1.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"tsc-alias": "^1.8.10",
"type-fest": "^4.24.0",
"typescript": "^5.5.4"
}
}