-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "jsapdu",
"version": "0.0.1",
"type": "module",
"description": "Modern TypeScript library for SmartCard communication across multiple platforms and protocols",
"keywords": [
"smartcard",
"apdu",
"pcsc",
"nfc",
"mynacard",
"japan",
"iso7816",
"typescript"
],
"author": "株式会社AokiApp (AokiApp Inc.) <https://aoki.app>",
"license": "SEE LICENSE IN https://raw.githubusercontent.com/AokiApp/ANAL/refs/heads/main/licenses/ANAL-Tight-1.0.1.md",
"homepage": "https://github.com/AokiApp/jsapdu#readme",
"repository": {
"type": "git",
"url": "https://github.com/AokiApp/jsapdu.git"
},
"bugs": {
"url": "https://github.com/AokiApp/jsapdu/issues"
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && turbo clean",
"test": "vitest run",
"test:unit": "vitest run packages",
"test:e2e": "vitest run examples/mynacard-e2e",
"test:ci": "SKIP_E2E_TESTS=true vitest run",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "npm run -ws typecheck --if-present",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.24.0",
"@types/node": "^24.2.1",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"turbo": "^1.13.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"vitest": "^3.1.1"
},
"workspaces": [
"packages/*",
"examples/*"
]
}