-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@isardsat/tri",
"version": "1.13.1",
"description": "Powerful configuration file processor",
"keywords": [
"configuration",
"yaml",
"csv"
],
"homepage": "https://github.com/lobelia-earth/tri",
"bugs": {
"url": "https://github.com/lobelia-earth/tri/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lobelia-earth/tri.git"
},
"license": "MIT",
"author": "Lobelia",
"type": "module",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/esm/index.d.ts"
}
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "yarn clean && tsc && tsc -p tsconfig.cjs.json",
"postbuild": "node scripts/postbuild.js",
"build:watch": "yarn clean && tsc --watch & tsc --watch -p tsconfig.cjs.json",
"clean": "rm -r lib",
"coverage": "vitest run --coverage",
"lint": "eslint",
"prettier": "prettier --write .",
"test": "vitest run",
"typecheck": "tsc --pretty --noEmit",
"xxl": "xxl --src src --exclude /coverage/"
},
"dependencies": {
"mustache": "^4.0.1",
"papaparse": "^5.3.2",
"timm": "^1.6.2",
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/mustache": "^4.0.1",
"@types/papaparse": "^5.3.15",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"oao": "^2.0.2",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8",
"xxl": "^1.3.0"
},
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
}
}