-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "tariff-engine",
"version": "0.3.1",
"description": "Rule-based HS code classification engine — AI at build time, deterministic at runtime, offline-capable, explainable",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"tariff-engine": "./dist/cli/index.js"
},
"files": [
"dist",
"data/hs-tree.json",
"data/rules/",
"data/heading-synonyms.json"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"classify": "tsx cli/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"hs-code",
"tariff",
"classification",
"harmonized-system",
"customs",
"trade",
"rule-engine"
],
"author": "wharfe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wharfe/tariff-engine.git"
},
"homepage": "https://github.com/wharfe/tariff-engine#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@types/node": "^25.5.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}